Uses of Interface
com.speedment.runtime.compute.ToBoolean
-
Packages that use ToBoolean 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.com.speedment.runtime.compute.expression.orelse -
-
Uses of ToBoolean in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToBoolean Modifier and Type Method Description default <V> ToBoolean<V>ToBoolean. compose(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 ToBoolean<T>ToBoolean. map(BooleanUnaryOperator operator)static <T> ToBoolean<T>ToBoolean. of(Predicate<T> lambda)Returns a typedToBoolean<T>using the providedlambda.default ToBoolean<T>ToBooleanNullable. orElse(Boolean value)default ToBoolean<T>ToBooleanNullable. orElseGet(ToBoolean<T> getter)default ToBoolean<T>ToBooleanNullable. orThrow()Methods in com.speedment.runtime.compute with parameters of type ToBoolean Modifier and Type Method Description default ToBoolean<T>ToBooleanNullable. orElseGet(ToBoolean<T> getter) -
Uses of ToBoolean in com.speedment.runtime.compute.expression
Methods in com.speedment.runtime.compute.expression that return ToBoolean Modifier and Type Method Description static <T> ToBoolean<T>Expressions. negate(ToBoolean<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 ToBoolean Modifier and Type Method Description static <T> ToBoolean<T>Expressions. negate(ToBoolean<T> expression)Creates and returns an expression that will compute the negative result of the specified expression. -
Uses of ToBoolean in com.speedment.runtime.compute.expression.orelse
Subinterfaces of ToBoolean in com.speedment.runtime.compute.expression.orelse Modifier and Type Interface Description interfaceToBooleanOrElse<T>SpecializedNonNullableExpressionforbooleanvalues where a default value is given if the original expression returnsnull.interfaceToBooleanOrElseGet<T>SpecializedNonNullableExpressionforbooleanvalues where a getter function is applied if the original expression returnsnull.interfaceToBooleanOrThrow<T>SpecializedNonNullableExpressionforbooleanvalues where aNullPointerExceptionis thrown if the original expression returnsnull.
-