- java.lang.Object
-
- aeonics.util.Tuples.Triple<A,B,C>
-
- Type Parameters:
A
- the first value typeB
- the second value typeC
- the third value type
- Enclosing class:
- Tuples
public static class Tuples.Triple<A,B,C> extends java.lang.Object
A wrapper for three values
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
static <X,Y,Z>
Tuples.Triple<X,Y,Z>of(X a, Y b, Z c)
Creates a new three-value wrapper
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
of
public static <X,Y,Z> Tuples.Triple<X,Y,Z> of(X a, Y b, Z c)
Creates a new three-value wrapper- Type Parameters:
X
- the first value typeY
- the second value typeZ
- the third value type- Parameters:
a
- the first valueb
- the second valuec
- the third value- Returns:
- a new three-value wrapper
-
-