Uses of Interface
com.speedment.runtime.compute.ToBigDecimal
-
Packages that use ToBigDecimal 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 ToBigDecimal in com.speedment.runtime.compute
Methods in com.speedment.runtime.compute that return ToBigDecimal Modifier and Type Method Description default ToBigDecimal<T>ToBigDecimal. abs()default ToBigDecimal<T>ToBigDecimal. map(UnaryOperator<BigDecimal> mapper)default ToBigDecimal<T>ToBigDecimal. negate()static <T> ToBigDecimal<T>ToBigDecimal. of(Function<T,BigDecimal> lambda)Returns a typedToBigDecimal<T>using the providedlambda.default ToBigDecimal<T>ToBigDecimalNullable. orElse(BigDecimal value)default ToBigDecimal<T>ToBigDecimalNullable. orElseGet(ToBigDecimal<T> getter)default ToBigDecimal<T>ToBigDecimalNullable. orThrow()Methods in com.speedment.runtime.compute with parameters of type ToBigDecimal Modifier and Type Method Description default ToBigDecimal<T>ToBigDecimalNullable. orElseGet(ToBigDecimal<T> getter) -
Uses of ToBigDecimal in com.speedment.runtime.compute.expression
Methods in com.speedment.runtime.compute.expression that return ToBigDecimal Modifier and Type Method Description static <T> ToBigDecimal<T>Expressions. negate(ToBigDecimal<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 ToBigDecimal Modifier and Type Method Description static <T> ToBigDecimal<T>Expressions. negate(ToBigDecimal<T> expression)Creates and returns an expression that will compute the negative result of the specified expression.static <T> ToByte<T>Expressions. sign(ToBigDecimal<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. -
Uses of ToBigDecimal in com.speedment.runtime.compute.expression.orelse
Subinterfaces of ToBigDecimal in com.speedment.runtime.compute.expression.orelse Modifier and Type Interface Description interfaceToBigDecimalOrElse<T>SpecializedNonNullableExpressionforBigDecimalvalues where a default value is given if the original expression returnsnull.interfaceToBigDecimalOrElseGet<T>SpecializedNonNullableExpressionforBigDecimalvalues where a getter function is applied if the original expression returnsnull.interfaceToBigDecimalOrThrow<T>SpecializedNonNullableExpressionforBigDecimalvalues where aNullPointerExceptionis thrown if the original expression returnsnull.
-