Uses of Interface
com.speedment.common.tuple.nullable.Tuple2OfNullables
-
Packages that use Tuple2OfNullables 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 Tuple2OfNullables in com.speedment.common.tuple
Methods in com.speedment.common.tuple that return Tuple2OfNullables Modifier and Type Method Description static <T0,T1>
Tuple2OfNullables<T0,T1>TuplesOfNullables. ofNullables(T0 e0, T1 e1)Creates and returns a newTuple2OfNullableswith the given parameters.Methods in com.speedment.common.tuple that return types with arguments of type Tuple2OfNullables Modifier and Type Method Description static <T,T0,T1>
Function<T,Tuple2OfNullables<T0,T1>>TuplesOfNullables. toTupleOfNullables(Function<T,T0> m0, Function<T,T1> m1)Creates and returns a Function that, when applied, creates aTuple2OfNullablesfrom an initial object of type T by applying the given mappers. -
Uses of Tuple2OfNullables in com.speedment.common.tuple.nullable
Methods in com.speedment.common.tuple.nullable that return types with arguments of type Tuple2OfNullables Modifier and Type Method Description static <T0,T1>
TupleGetter0<Tuple2OfNullables<T0,T1>,Optional<T0>>Tuple2OfNullables. getter0()Returns agetterfor the 0th element in theTuple.static <T0,T1>
TupleGetter1<Tuple2OfNullables<T0,T1>,Optional<T1>>Tuple2OfNullables. getter1()Returns agetterfor the 1st element in theTuple.static <T0,T1>
TupleGetter0<Tuple2OfNullables<T0,T1>,T0>Tuple2OfNullables. getterOrNull0()Returns agetterfor the 0th element in theTuple.static <T0,T1>
TupleGetter1<Tuple2OfNullables<T0,T1>,T1>Tuple2OfNullables. getterOrNull1()Returns agetterfor the 1st element in theTuple.
-