Uses of Class
com.andrebreves.tuple.Tuple4
-
-
Uses of Tuple4 in com.andrebreves.tuple
Methods in com.andrebreves.tuple that return Tuple4 Modifier and Type Method Description static <T1,T2,T3,T4>
Tuple4<T1,T2,T3,T4>Tuple. of(T1 v1, T2 v2, T3 v3, T4 v4)Returns a Tuple that has 4 values.static <T1,T2,T3,T4>
Tuple4<T1,T2,T3,T4>Tuple4. of(T1 v1, T2 v2, T3 v3, T4 v4)Returns a Tuple that has 4 values.Methods in com.andrebreves.tuple with parameters of type Tuple4 Modifier and Type Method Description intTuple4. compareTo(Tuple4<T1,T2,T3,T4> other)static <T1> T1Tuple. v1(Tuple4<T1,?,?,?> tuple)Returns the 1st value of the Tuple.static <T2> T2Tuple. v2(Tuple4<?,T2,?,?> tuple)Returns the 2nd value of the Tuple.static <T3> T3Tuple. v3(Tuple4<?,?,T3,?> tuple)Returns the 3rd value of the Tuple.static <T4> T4Tuple. v4(Tuple4<?,?,?,T4> tuple)Returns the 4th value of the Tuple.
-