@InterfaceAudience.Private public class Triple<A,B,C> extends Object
Modifier and Type | Method and Description |
---|---|
static <A,B,C> Triple<A,B,C> |
create(A first,
B second,
C third) |
boolean |
equals(Object obj) |
A |
getFirst() |
B |
getSecond() |
C |
getThird() |
int |
hashCode() |
void |
setFirst(A first) |
void |
setSecond(B second) |
void |
setThird(C third) |
String |
toString() |
public static <A,B,C> Triple<A,B,C> create(A first, B second, C third)
public A getFirst()
public void setFirst(A first)
public B getSecond()
public void setSecond(B second)
public C getThird()
public void setThird(C third)