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