Uses of Interface
com.speedment.runtime.compute.trait.HasMinus
-
Packages that use HasMinus 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.orelse com.speedment.runtime.compute.trait Traits used in the base package for functional interfaces. -
-
Uses of HasMinus in com.speedment.runtime.compute
Subinterfaces of HasMinus in com.speedment.runtime.compute Modifier and Type Interface Description interfaceToBigDecimal<T>Expression that given an entity returns a non-nullBigDecimalvalue.interfaceToByte<T>Expression that given an entity returns abytevalue.interfaceToDouble<T>Expression that given an entity returns adoublevalue.interfaceToFloat<T>Expression that given an entity returns afloatvalue.interfaceToInt<T>Expression that given an entity returns anintvalue.interfaceToLong<T>Expression that given an entity returns alongvalue.interfaceToShort<T>Expression that given an entity returns ashortvalue. -
Uses of HasMinus in com.speedment.runtime.compute.expression.orelse
Subinterfaces of HasMinus 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.interfaceToByteOrElse<T>SpecializedNonNullableExpressionforbytevalues where a default value is given if the original expression returnsnull.interfaceToByteOrElseGet<T>SpecializedNonNullableExpressionforbytevalues where a getter function is applied if the original expression returnsnull.interfaceToByteOrThrow<T>SpecializedNonNullableExpressionforbytevalues where aNullPointerExceptionis thrown if the original expression returnsnull.interfaceToDoubleOrElse<T>SpecializedNonNullableExpressionfordoublevalues where a default value is given if the original expression returnsnull.interfaceToDoubleOrElseGet<T>SpecializedNonNullableExpressionfordoublevalues where a getter function is applied if the original expression returnsnull.interfaceToDoubleOrThrow<T>SpecializedNonNullableExpressionfordoublevalues where aNullPointerExceptionis thrown if the original expression returnsnull.interfaceToFloatOrElse<T>SpecializedNonNullableExpressionforfloatvalues where a default value is given if the original expression returnsnull.interfaceToFloatOrElseGet<T>SpecializedNonNullableExpressionforfloatvalues where a getter function is applied if the original expression returnsnull.interfaceToFloatOrThrow<T>SpecializedNonNullableExpressionforfloatvalues where aNullPointerExceptionis thrown if the original expression returnsnull.interfaceToIntOrElse<T>SpecializedNonNullableExpressionforintvalues where a default value is given if the original expression returnsnull.interfaceToIntOrElseGet<T>SpecializedNonNullableExpressionforintvalues where a getter function is applied if the original expression returnsnull.interfaceToIntOrThrow<T>SpecializedNonNullableExpressionforintvalues where aNullPointerExceptionis thrown if the original expression returnsnull.interfaceToLongOrElse<T>SpecializedNonNullableExpressionforlongvalues where a default value is given if the original expression returnsnull.interfaceToLongOrElseGet<T>SpecializedNonNullableExpressionforlongvalues where a getter function is applied if the original expression returnsnull.interfaceToLongOrThrow<T>SpecializedNonNullableExpressionforlongvalues where aNullPointerExceptionis thrown if the original expression returnsnull.interfaceToShortOrElse<T>SpecializedNonNullableExpressionforshortvalues where a default value is given if the original expression returnsnull.interfaceToShortOrElseGet<T>SpecializedNonNullableExpressionforshortvalues where a getter function is applied if the original expression returnsnull.interfaceToShortOrThrow<T>SpecializedNonNullableExpressionforshortvalues where aNullPointerExceptionis thrown if the original expression returnsnull. -
Uses of HasMinus in com.speedment.runtime.compute.trait
Methods in com.speedment.runtime.compute.trait that return HasMinus Modifier and Type Method Description HasMinus<T>HasMinus. minus(byte other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.HasMinus<T>HasMinus. minus(int other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.HasMinus<T>HasMinus. minus(long other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.HasMinus<T>HasMinus. minus(ToByte<T> other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.HasMinus<T>HasMinus. minus(ToInt<T> other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.HasMinus<T>HasMinus. minus(ToLong<T> other)Creates and returns an expression that returns the difference of the result from the current expression and the other term.
-