Uses of Interface
com.speedment.runtime.compute.ToByteNullable
-
Packages that use ToByteNullable 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 ToByteNullable in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToByteNullable Modifier and Type Method Description default ToByteNullable<T>ToByteNullable. abs()default <V> ToByteNullable<V>ToByte. compose(Function<? super V,? extends T> before)default <V> ToByteNullable<V>ToByteNullable. compose(Function<? super V,? extends T> before)default ToByteNullable<T>ToByteNullable. mapIfPresent(ByteUnaryOperator mapper)default ToByteNullable<T>ToByteNullable. negate()static <T> ToByteNullable<T>ToByteNullable. of(Function<T,Byte> lambda)Returns a typedToByteNullable<T>using the providedlambda.default ToByteNullable<T>ToByteNullable. sign()default ToByteNullable<T>ToDoubleNullable. sign()default ToByteNullable<T>ToFloatNullable. sign()default ToByteNullable<T>ToIntNullable. sign()default ToByteNullable<T>ToLongNullable. sign()default ToByteNullable<T>ToShortNullable. sign() -
Uses of ToByteNullable in com.speedment.runtime.compute.expression
Methods in com.speedment.runtime.compute.expression that return ToByteNullable Modifier and Type Method Description static <T> ToByteNullable<T>Expressions. absOrNull(ToByteNullable<T> expression)Returns an expression that takes an expression and returns its absolute (removing the negation sign if any).static <T> ToByteNullable<T>Expressions. negateOrNull(ToByteNullable<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.static <T> ToByteNullable<T>Expressions. signOrNull(ToByteNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToByteNullable<T>Expressions. signOrNull(ToDoubleNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToByteNullable<T>Expressions. signOrNull(ToFloatNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToByteNullable<T>Expressions. signOrNull(ToIntNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToByteNullable<T>Expressions. signOrNull(ToLongNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToByteNullable<T>Expressions. signOrNull(ToShortNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.Methods in com.speedment.runtime.compute.expression with parameters of type ToByteNullable Modifier and Type Method Description static <T> ToByteNullable<T>Expressions. absOrNull(ToByteNullable<T> expression)Returns an expression that takes an expression and returns its absolute (removing the negation sign if any).static <T> ToDoubleNullable<T>Expressions. byteToDoubleNullable(ToByteNullable<T> expression)Creates and returns an expression that converts the result of the specified expression into adoubleby casting.static <T> ToByteNullable<T>Expressions. negateOrNull(ToByteNullable<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.static <T> ToDoubleNullable<T>Expressions. powOrNull(ToByteNullable<T> expression, double power)Creates and returns an expression that takes the result of an input expression and multiplies it with itselfpowertimes.static <T> ToDoubleNullable<T>Expressions. powOrNull(ToByteNullable<T> expression, int power)Creates and returns an expression that takes the result of an input expression and multiplies it with itselfpowertimes.static <T> ToDoubleNullable<T>Expressions. powOrNull(ToByteNullable<T> expression, ToDouble<T> power)Creates and returns an expression that takes the result of an input expression and multiplies it with itself as many times as the result of applyingpowerto the input.static <T> ToDoubleNullable<T>Expressions. powOrNull(ToByteNullable<T> expression, ToInt<T> power)Creates and returns an expression that takes the result of an input expression and multiplies it with itself as many times as the result of applyingpowerto the input.static <T> ToByteNullable<T>Expressions. signOrNull(ToByteNullable<T> expression)Creates and returns an expression that returns1if the result of the input expression is positive,-1if the result of the input expression is negative and0if the result of the input expression is0.static <T> ToDoubleNullable<T>Expressions. sqrtOrNull(ToByteNullable<T> expression)Creates and returns an expression that returns the square root of the result from the input expression.
-