public class

Triple

extends Object
java.lang.Object
   ↳ com.pnfsoftware.jeb.util.base.Triple<A, B, C>

Class Overview

Handy class holding three typed elements. Null values are allowed.

See Also

Summary

Public Constructors
Triple(A a, B b, C c)
Public Methods
boolean equals(Object obj)
A getFirst()
B getSecond()
C getThird()
int hashCode()
void setFirst(A a)
void setSecond(B b)
void setThird(C c)
String toString()
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public Triple (A a, B b, C c)

Public Methods

public boolean equals (Object obj)

public A getFirst ()

public B getSecond ()

public C getThird ()

public int hashCode ()

public void setFirst (A a)

public void setSecond (B b)

public void setThird (C c)

public String toString ()