| 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 the
com.speedment.enterprise.aggregator.function
package. |
| com.speedment.runtime.compute.expression.orelse |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ToBigDecimal<T>
Expression that given an entity returns a non-null
BigDecimal value. |
interface |
ToBigDecimalNullable<T>
Expression that given an entity returns a nullable
BigDecimal value. |
interface |
ToBoolean<T>
Expression that given an entity returns a
boolean value. |
interface |
ToBooleanNullable<T>
Expression that given an entity returns a
boolean value, or
null. |
interface |
ToByte<T>
Expression that given an entity returns a
byte value. |
interface |
ToByteNullable<T>
Expression that given an entity returns a
byte value, or
null. |
interface |
ToChar<T>
Expression that given an entity returns a
char value. |
interface |
ToCharNullable<T>
Expression that given an entity returns a
char value, or
null. |
interface |
ToDouble<T>
Expression that given an entity returns a
double value. |
interface |
ToDoubleNullable<T>
Expression that given an entity returns a
double value, or
null. |
interface |
ToEnum<T,E extends Enum<E>>
Expression that given an entity returns a non-null
enum value. |
interface |
ToEnumNullable<T,E extends Enum<E>>
Expression that given an entity returns an
enum value, or
null. |
interface |
ToFloat<T>
Expression that given an entity returns a
float value. |
interface |
ToFloatNullable<T>
Expression that given an entity returns a
float value, or
null. |
interface |
ToInt<T>
Expression that given an entity returns an
int value. |
interface |
ToIntNullable<T>
Expression that given an entity returns an
int value, or
null. |
interface |
ToLong<T>
Expression that given an entity returns a
long value. |
interface |
ToLongNullable<T>
Expression that given an entity returns a
long value, or
null. |
interface |
ToShort<T>
Expression that given an entity returns a
short value. |
interface |
ToShortNullable<T>
Expression that given an entity returns a
short value, or
null. |
interface |
ToString<T>
Expression that given an entity returns a non-null
String value. |
interface |
ToStringNullable<T>
Expression that given an entity returns a
String value, or
null. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
JoiningExpression<T>
A special type of
ToString expression that joins several strings
together using optionally a separator, a prefix and a suffix. |
| Modifier and Type | Interface and Description |
|---|---|
interface |
ToBigDecimalOrElse<T>
Specialized
NonNullableExpression for BigDecimal values where a
default value is given if the original expression returns null. |
interface |
ToBigDecimalOrElseGet<T>
Specialized
NonNullableExpression for BigDecimal values where
a getter function is applied if the original expression returns null. |
interface |
ToBigDecimalOrThrow<T>
Specialized
NonNullableExpression for BigDecimal values where
a NullPointerException is thrown if the original expression returns
null. |
interface |
ToBooleanOrElse<T>
Specialized
NonNullableExpression for boolean values where a
default value is given if the original expression returns null. |
interface |
ToBooleanOrElseGet<T>
Specialized
NonNullableExpression for boolean values where a
getter function is applied if the original expression returns null. |
interface |
ToBooleanOrThrow<T>
Specialized
NonNullableExpression for boolean values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToByteOrElse<T>
Specialized
NonNullableExpression for byte values where a
default value is given if the original expression returns null. |
interface |
ToByteOrElseGet<T>
Specialized
NonNullableExpression for byte values where a
getter function is applied if the original expression returns null. |
interface |
ToByteOrThrow<T>
Specialized
NonNullableExpression for byte values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToCharOrElse<T>
Specialized
NonNullableExpression for char values where a
default value is given if the original expression returns null. |
interface |
ToCharOrElseGet<T>
Specialized
NonNullableExpression for char values where a
getter function is applied if the original expression returns null. |
interface |
ToCharOrThrow<T>
Specialized
NonNullableExpression for char values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToDoubleOrElse<T>
Specialized
NonNullableExpression for double values where a
default value is given if the original expression returns null. |
interface |
ToDoubleOrElseGet<T>
Specialized
NonNullableExpression for double values where a
getter function is applied if the original expression returns null. |
interface |
ToDoubleOrThrow<T>
Specialized
NonNullableExpression for double values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToEnumOrElse<T,E extends Enum<E>>
Specialized
NonNullableExpression for Enum values where a
default value is given if the original expression returns null. |
interface |
ToEnumOrElseGet<T,E extends Enum<E>>
Specialized
NonNullableExpression for double values where a
getter function is applied if the original expression returns null. |
interface |
ToEnumOrThrow<T,E extends Enum<E>>
Specialized
NonNullableExpression for Enum values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToFloatOrElse<T>
Specialized
NonNullableExpression for float values where a
default value is given if the original expression returns null. |
interface |
ToFloatOrElseGet<T>
Specialized
NonNullableExpression for float values where a
getter function is applied if the original expression returns null. |
interface |
ToFloatOrThrow<T>
Specialized
NonNullableExpression for float values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToIntOrElse<T>
Specialized
NonNullableExpression for int values where a
default value is given if the original expression returns null. |
interface |
ToIntOrElseGet<T>
Specialized
NonNullableExpression for int values where a
getter function is applied if the original expression returns null. |
interface |
ToIntOrThrow<T>
Specialized
NonNullableExpression for int values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToLongOrElse<T>
Specialized
NonNullableExpression for long values where a
default value is given if the original expression returns null. |
interface |
ToLongOrElseGet<T>
Specialized
NonNullableExpression for long values where a
getter function is applied if the original expression returns null. |
interface |
ToLongOrThrow<T>
Specialized
NonNullableExpression for long values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToShortOrElse<T>
Specialized
NonNullableExpression for short values where a
default value is given if the original expression returns null. |
interface |
ToShortOrElseGet<T>
Specialized
NonNullableExpression for short values where a
getter function is applied if the original expression returns null. |
interface |
ToShortOrThrow<T>
Specialized
NonNullableExpression for short values where a
NullPointerException is thrown if the original expression returns
null. |
interface |
ToStringOrElse<T>
Specialized
NonNullableExpression for String values where a
default value is given if the original expression returns null. |
interface |
ToStringOrElseGet<T>
Specialized
NonNullableExpression for String values where a
getter function is applied if the original expression returns null. |
interface |
ToStringOrThrow<T>
Specialized
NonNullableExpression for String values where a
NullPointerException is thrown if the original expression returns
null. |
Copyright © 2019 Speedment, Inc.. All rights reserved.