Class Triplet<X,Y,Z>
- java.lang.Object
-
- org.benf.cfr.reader.bytecode.analysis.parse.utils.Triplet<X,Y,Z>
-
public class Triplet<X,Y,Z> extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
X
getFirst()
Y
getSecond()
Z
getThird()
int
hashCode()
static <A,B,C>
Triplet<A,B,C>make(A a, B b, C c)
-
-
-
Method Detail
-
getFirst
public X getFirst()
-
getSecond
public Y getSecond()
-
getThird
public Z getThird()
-
make
public static <A,B,C> Triplet<A,B,C> make(A a, B b, C c)
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-