Uses of Class
com.andrebreves.tuple.Tuple2
-
-
Uses of Tuple2 in com.andrebreves.tuple
Methods in com.andrebreves.tuple that return Tuple2 Modifier and Type Method Description static <T1,T2>
Tuple2<T1,T2>Tuple. of(T1 v1, T2 v2)Returns a Tuple that has 2 values.static <T1,T2>
Tuple2<T1,T2>Tuple2. of(T1 v1, T2 v2)Returns a Tuple that has 2 values.Methods in com.andrebreves.tuple with parameters of type Tuple2 Modifier and Type Method Description intTuple2. compareTo(Tuple2<T1,T2> other)static <T1> T1Tuple. v1(Tuple2<T1,?> tuple)Returns the 1st value of the Tuple.static <T2> T2Tuple. v2(Tuple2<?,T2> tuple)Returns the 2nd value of the Tuple.
-