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