static <T> ToFloatNullable<T> |
Expressions.absOrNull(ToFloatNullable<T> expression) |
Returns an expression that takes an expression and returns its absolute
(removing the negation sign if any).
|
static <T> ToDoubleNullable<T> |
Expressions.floatToDoubleNullable(ToFloatNullable<T> expression) |
Creates and returns an expression that converts the result of the
specified expression into a double by casting.
|
static <T> ToFloatNullable<T> |
Expressions.negateOrNull(ToFloatNullable<T> expression) |
Creates and returns an expression that will compute the negative result
of the specified expression.
|
static <T> ToDoubleNullable<T> |
Expressions.powOrNull(ToFloatNullable<T> expression,
double power) |
Creates and returns an expression that takes the result of an input
expression and multiplies it with itself power times.
|
static <T> ToDoubleNullable<T> |
Expressions.powOrNull(ToFloatNullable<T> expression,
int power) |
Creates and returns an expression that takes the result of an input
expression and multiplies it with itself power times.
|
static <T> ToDoubleNullable<T> |
Expressions.powOrNull(ToFloatNullable<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
applying power to the input.
|
static <T> ToDoubleNullable<T> |
Expressions.powOrNull(ToFloatNullable<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
applying power to the input.
|
static <T> ToByteNullable<T> |
Expressions.signOrNull(ToFloatNullable<T> expression) |
Creates and returns an expression that returns 1 if the result of
the input expression is positive, -1 if the result of the input
expression is negative and 0 if the result of the input
expression is 0.
|
static <T> ToDoubleNullable<T> |
Expressions.sqrtOrNull(ToFloatNullable<T> expression) |
Creates and returns an expression that returns the square root of the
result from the input expression.
|