Uses of Class
com.andrebreves.tuple.Tuple8
-
-
Uses of Tuple8 in com.andrebreves.tuple
Methods in com.andrebreves.tuple that return Tuple8 Modifier and Type Method Description static <T1,T2,T3,T4,T5,T6,T7,T8>
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>Tuple. of(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8)Returns a Tuple that has 8 values.static <T1,T2,T3,T4,T5,T6,T7,T8>
Tuple8<T1,T2,T3,T4,T5,T6,T7,T8>Tuple8. of(T1 v1, T2 v2, T3 v3, T4 v4, T5 v5, T6 v6, T7 v7, T8 v8)Returns a Tuple that has 8 values.Methods in com.andrebreves.tuple with parameters of type Tuple8 Modifier and Type Method Description intTuple8. compareTo(Tuple8<T1,T2,T3,T4,T5,T6,T7,T8> other)static <T1> T1Tuple. v1(Tuple8<T1,?,?,?,?,?,?,?> tuple)Returns the 1st value of the Tuple.static <T2> T2Tuple. v2(Tuple8<?,T2,?,?,?,?,?,?> tuple)Returns the 2nd value of the Tuple.static <T3> T3Tuple. v3(Tuple8<?,?,T3,?,?,?,?,?> tuple)Returns the 3rd value of the Tuple.static <T4> T4Tuple. v4(Tuple8<?,?,?,T4,?,?,?,?> tuple)Returns the 4th value of the Tuple.static <T5> T5Tuple. v5(Tuple8<?,?,?,?,T5,?,?,?> tuple)Returns the 5th value of the Tuple.static <T6> T6Tuple. v6(Tuple8<?,?,?,?,?,T6,?,?> tuple)Returns the 6th value of the Tuple.static <T7> T7Tuple. v7(Tuple8<?,?,?,?,?,?,T7,?> tuple)Returns the 7th value of the Tuple.static <T8> T8Tuple. v8(Tuple8<?,?,?,?,?,?,?,T8> tuple)Returns the 8th value of the Tuple.
-