Uses of Interface
com.speedment.runtime.compute.trait.HasNegate
-
Packages that use HasNegate 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 HasNegate in com.speedment.runtime.compute
Subinterfaces of HasNegate 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.interfaceToByteNullable<T>Expression that given an entity returns abytevalue, ornull.interfaceToDouble<T>Expression that given an entity returns adoublevalue.interfaceToDoubleNullable<T>Expression that given an entity returns adoublevalue, ornull.interfaceToFloat<T>Expression that given an entity returns afloatvalue.interfaceToFloatNullable<T>Expression that given an entity returns afloatvalue, ornull.interfaceToInt<T>Expression that given an entity returns anintvalue.interfaceToIntNullable<T>Expression that given an entity returns anintvalue, ornull.interfaceToLong<T>Expression that given an entity returns alongvalue.interfaceToLongNullable<T>Expression that given an entity returns alongvalue, ornull.interfaceToShort<T>Expression that given an entity returns ashortvalue.interfaceToShortNullable<T>Expression that given an entity returns ashortvalue, ornull. -
Uses of HasNegate in com.speedment.runtime.compute.expression.orelse
Subinterfaces of HasNegate 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 HasNegate in com.speedment.runtime.compute.trait
Classes in com.speedment.runtime.compute.trait with type parameters of type HasNegate Modifier and Type Interface Description interfaceHasNegate<E extends HasNegate<E>>Trait for expressions that has anegate()method for getting the negative value of the result from the current expression.
-