public class Triplet<A,B,C>
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
A |
getFirst() |
B |
getSecond() |
C |
getThird() |
int |
hashCode() |
static <A,B,C> Triplet<A,B,C> |
of(A a,
B b,
C c) |
void |
setFirst(A a) |
void |
setSecond(B b) |
void |
setThird(C c) |
java.lang.String |
toString() |
public java.lang.String toString()
toString
in class java.lang.Object
public static <A,B,C> Triplet<A,B,C> of(A a, B b, C c)
public A getFirst()
public B getSecond()
public C getThird()
public void setFirst(A a)
public void setSecond(B b)
public void setThird(C c)
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object