Class ImmutableCoerceToDecimalOperator
java.lang.Object
io.dialob.session.engine.program.expr.arith.ImmutableCoerceToDecimalOperator
- All Implemented Interfaces:
CoerceToDecimalOperator,Expression,Serializable
@Generated(from="CoerceToDecimalOperator",
generator="Immutables")
@ParametersAreNonnullByDefault
@Generated("org.immutables.processor.ProxyProcessor")
@Immutable
@CheckReturnValue
public final class ImmutableCoerceToDecimalOperator
extends Object
implements CoerceToDecimalOperator
Immutable implementation of
CoerceToDecimalOperator.
Use the builder to create immutable instances:
ImmutableCoerceToDecimalOperator.builder().
Use the static factory method to create immutable instances:
ImmutableCoerceToDecimalOperator.of().
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classBuilds instances of typeImmutableCoerceToDecimalOperator. -
Method Summary
Modifier and TypeMethodDescriptionbuilder()Creates a builder forImmutableCoerceToDecimalOperator.copyOf(CoerceToDecimalOperator instance) Creates an immutable copy of aCoerceToDecimalOperatorvalue.booleanThis instance is equal to all instances ofImmutableCoerceToDecimalOperatorthat have equal attribute values.inthashCode()Computes a hash code from attributes:expression.of(Expression expression) Construct a new immutableCoerceToDecimalOperatorinstance.toString()Prints the immutable valueCoerceToDecimalOperatorwith attribute values.withExpression(Expression value) Copy the current immutable object by setting a value for theexpressionattribute.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface io.dialob.session.engine.program.expr.arith.CoerceToDecimalOperator
eval, getEvalRequiredConditions, getValueType
-
Method Details
-
getExpression
- Specified by:
getExpressionin interfaceCoerceToDecimalOperator- Returns:
- The value of the
expressionattribute
-
withExpression
Copy the current immutable object by setting a value for theexpressionattribute. A shallow reference equality check is used to prevent copying of the same value by returningthis.- Parameters:
value- A new value for expression- Returns:
- A modified copy or the
thisobject
-
equals
This instance is equal to all instances ofImmutableCoerceToDecimalOperatorthat have equal attribute values. -
hashCode
public int hashCode()Computes a hash code from attributes:expression. -
toString
Prints the immutable valueCoerceToDecimalOperatorwith attribute values. -
of
Construct a new immutableCoerceToDecimalOperatorinstance.- Parameters:
expression- The value for theexpressionattribute- Returns:
- An immutable CoerceToDecimalOperator instance
-
copyOf
Creates an immutable copy of aCoerceToDecimalOperatorvalue. Uses accessors to get values to initialize the new immutable instance. If an instance is already immutable, it is returned as is.- Parameters:
instance- The instance to copy- Returns:
- A copied immutable CoerceToDecimalOperator instance
-
builder
Creates a builder forImmutableCoerceToDecimalOperator.ImmutableCoerceToDecimalOperator.builder() .expression(io.dialob.session.engine.program.model.Expression) // requiredexpression.build();- Returns:
- A new ImmutableCoerceToDecimalOperator builder
-