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