Uses of Interface
com.speedment.runtime.compute.ToBooleanNullable
-
Packages that use ToBooleanNullable Package Description com.speedment.runtime.compute The Runtime Compute module adds a large number of functional interfaces to the Speedment system that allows computations to be performed on entities in a Stream without loosing metadata required by Speedment to optimize the stream.com.speedment.runtime.compute.expression Expression builders that can produce efficient and type-safe implementations of the interfaces in thecom.speedment.enterprise.aggregator.functionpackage. -
-
Uses of ToBooleanNullable in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToBooleanNullable Modifier and Type Method Description default <V> ToBooleanNullable<V>ToBooleanNullable. compose(Function<? super V,? extends T> before)default <V> ToBooleanNullable<V>ToBoolean. composeNullable(Function<? super V,? extends T> before)Returns a composed expression that first applies thebeforefunction to its input, and then applies this function to the result.default ToBooleanNullable<T>ToBooleanNullable. mapIfPresent(BooleanUnaryOperator mapper)static <T> ToBooleanNullable<T>ToBooleanNullable. of(Function<T,Boolean> lambda)Returns a typedToBooleanNullable<T>using the providedlambda. -
Uses of ToBooleanNullable in com.speedment.runtime.compute.expression
Methods in com.speedment.runtime.compute.expression that return ToBooleanNullable Modifier and Type Method Description static <T> ToBooleanNullable<T>Expressions. negateOrNull(ToBooleanNullable<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.Methods in com.speedment.runtime.compute.expression with parameters of type ToBooleanNullable Modifier and Type Method Description static <T> ToBooleanNullable<T>Expressions. negateOrNull(ToBooleanNullable<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.
-