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