Uses of Interface
com.speedment.runtime.compute.ToIntNullable
-
Packages that use ToIntNullable 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 ToIntNullable in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToIntNullable Modifier and Type Method Description default ToIntNullable<T>ToIntNullable. abs()default ToIntNullable<T>ToEnumNullable. asOrdinal()Returns an alternative expression that represents theEnum.ordinal()of the enum that would otherwise have been returned by this expression.default <V> ToIntNullable<V>ToInt. compose(Function<? super V,? extends T> before)default <V> ToIntNullable<V>ToIntNullable. compose(Function<? super V,? extends T> before)default ToIntNullable<T>ToIntNullable. mapIfPresent(IntUnaryOperator mapper)default ToIntNullable<T>ToIntNullable. negate()static <T> ToIntNullable<T>ToIntNullable. of(Function<T,Integer> lambda)Returns a typedToIntNullable<T>using the providedlambda. -
Uses of ToIntNullable in com.speedment.runtime.compute.expression
Methods in com.speedment.runtime.compute.expression that return ToIntNullable Modifier and Type Method Description static <T> ToIntNullable<T>Expressions. absOrNull(ToIntNullable<T> expression)Returns an expression that takes an expression and returns its absolute (removing the negation sign if any).static <T> ToIntNullable<T>Expressions. negateOrNull(ToIntNullable<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 ToIntNullable Modifier and Type Method Description static <T> ToIntNullable<T>Expressions. absOrNull(ToIntNullable<T> expression)Returns an expression that takes an expression and returns its absolute (removing the negation sign if any).static <T> ToDoubleNullable<T>Expressions. intToDoubleNullable(ToIntNullable<T> expression)Creates and returns an expression that converts the result of the specified expression into adoubleby casting.static <T> ToIntNullable<T>Expressions. negateOrNull(ToIntNullable<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.static <T> ToDoubleNullable<T>Expressions. powOrNull(ToIntNullable<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(ToIntNullable<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(ToIntNullable<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(ToIntNullable<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(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> ToDoubleNullable<T>Expressions. sqrtOrNull(ToIntNullable<T> expression)Creates and returns an expression that returns the square root of the result from the input expression.
-