Uses of Interface
com.speedment.common.tuple.Tuple2
-
Packages that use Tuple2 Package Description com.speedment.common.tuple Immutable Tuples of various sizes are located in this package. -
-
Uses of Tuple2 in com.speedment.common.tuple
Methods in com.speedment.common.tuple that return Tuple2 Modifier and Type Method Description static <T0,T1>
Tuple2<T0,T1>Tuples. of(T0 e0, T1 e1)Creates and returns a newTuple2with the given parameters.Methods in com.speedment.common.tuple that return types with arguments of type Tuple2 Modifier and Type Method Description static <T0,T1>
TupleGetter0<Tuple2<T0,T1>,T0>Tuple2. getter0()Returns agetterfor the 0th element in theTuple.static <T0,T1>
TupleGetter1<Tuple2<T0,T1>,T1>Tuple2. getter1()Returns agetterfor the 1st element in theTuple.static <T,T0,T1>
Function<T,Tuple2<T0,T1>>Tuples. toTuple(Function<T,T0> m0, Function<T,T1> m1)Creates and returns a Function that, when applied, creates aTuple2from an initial object of type T by applying the given mappers.
-