Uses of Interface
com.speedment.common.tuple.nullable.Tuple4OfNullables
-
Packages that use Tuple4OfNullables 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 Tuple4OfNullables in com.speedment.common.tuple
Methods in com.speedment.common.tuple that return Tuple4OfNullables Modifier and Type Method Description static <T0,T1,T2,T3>
Tuple4OfNullables<T0,T1,T2,T3>TuplesOfNullables. ofNullables(T0 e0, T1 e1, T2 e2, T3 e3)Creates and returns a newTuple4OfNullableswith the given parameters.Methods in com.speedment.common.tuple that return types with arguments of type Tuple4OfNullables Modifier and Type Method Description static <T,T0,T1,T2,T3>
Function<T,Tuple4OfNullables<T0,T1,T2,T3>>TuplesOfNullables. toTupleOfNullables(Function<T,T0> m0, Function<T,T1> m1, Function<T,T2> m2, Function<T,T3> m3)Creates and returns a Function that, when applied, creates aTuple4OfNullablesfrom an initial object of type T by applying the given mappers. -
Uses of Tuple4OfNullables in com.speedment.common.tuple.nullable
Methods in com.speedment.common.tuple.nullable that return types with arguments of type Tuple4OfNullables Modifier and Type Method Description static <T0,T1,T2,T3>
TupleGetter0<Tuple4OfNullables<T0,T1,T2,T3>,Optional<T0>>Tuple4OfNullables. getter0()Returns agetterfor the 0th element in theTuple.static <T0,T1,T2,T3>
TupleGetter1<Tuple4OfNullables<T0,T1,T2,T3>,Optional<T1>>Tuple4OfNullables. getter1()Returns agetterfor the 1st element in theTuple.static <T0,T1,T2,T3>
TupleGetter2<Tuple4OfNullables<T0,T1,T2,T3>,Optional<T2>>Tuple4OfNullables. getter2()Returns agetterfor the 2nd element in theTuple.static <T0,T1,T2,T3>
TupleGetter3<Tuple4OfNullables<T0,T1,T2,T3>,Optional<T3>>Tuple4OfNullables. getter3()Returns agetterfor the 3rd element in theTuple.static <T0,T1,T2,T3>
TupleGetter0<Tuple4OfNullables<T0,T1,T2,T3>,T0>Tuple4OfNullables. getterOrNull0()Returns agetterfor the 0th element in theTuple.static <T0,T1,T2,T3>
TupleGetter1<Tuple4OfNullables<T0,T1,T2,T3>,T1>Tuple4OfNullables. getterOrNull1()Returns agetterfor the 1st element in theTuple.static <T0,T1,T2,T3>
TupleGetter2<Tuple4OfNullables<T0,T1,T2,T3>,T2>Tuple4OfNullables. getterOrNull2()Returns agetterfor the 2nd element in theTuple.static <T0,T1,T2,T3>
TupleGetter3<Tuple4OfNullables<T0,T1,T2,T3>,T3>Tuple4OfNullables. getterOrNull3()Returns agetterfor the 3rd element in theTuple.
-