Package io.dialob.program.expr.arith
Class ImmutableToUpperCaseOperator
- java.lang.Object
-
- io.dialob.program.expr.arith.ImmutableToUpperCaseOperator
-
- All Implemented Interfaces:
ToUpperCaseOperator,Expression,Serializable
@ParametersAreNonnullByDefault @Generated("org.immutables.processor.ProxyProcessor") @Immutable @CheckReturnValue public final class ImmutableToUpperCaseOperator extends Object implements ToUpperCaseOperator
Immutable implementation ofToUpperCaseOperator.Use the builder to create immutable instances:
ImmutableToUpperCaseOperator.builder(). Use the static factory method to create immutable instances:ImmutableToUpperCaseOperator.upperCaseOf().- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classImmutableToUpperCaseOperator.BuilderBuilds instances of typeImmutableToUpperCaseOperator.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ImmutableToUpperCaseOperator.Builderbuilder()Creates a builder forImmutableToUpperCaseOperator.static ImmutableToUpperCaseOperatorcopyOf(ToUpperCaseOperator instance)Creates an immutable copy of aToUpperCaseOperatorvalue.booleanequals(Object another)This instance is equal to all instances ofImmutableToUpperCaseOperatorthat have equal attribute values.ExpressiongetExpression()inthashCode()Computes a hash code from attributes:expression.StringtoString()Prints the immutable valueToUpperCaseOperatorwith attribute values.static ImmutableToUpperCaseOperatorupperCaseOf(Expression expression)Construct a new immutableToUpperCaseOperatorinstance.ImmutableToUpperCaseOperatorwithExpression(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, wait
-
Methods inherited from interface io.dialob.program.expr.arith.ToUpperCaseOperator
eval, getEvalRequiredConditions, getValueType
-
-
-
-
Method Detail
-
getExpression
public Expression getExpression()
- Specified by:
getExpressionin interfaceToUpperCaseOperator- Returns:
- The value of the
expressionattribute
-
withExpression
public final ImmutableToUpperCaseOperator withExpression(Expression value)
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 of the
thisobject
-
equals
public boolean equals(@Nullable Object another)This instance is equal to all instances ofImmutableToUpperCaseOperatorthat have equal attribute values.
-
hashCode
public int hashCode()
Computes a hash code from attributes:expression.
-
toString
public String toString()
Prints the immutable valueToUpperCaseOperatorwith attribute values.
-
upperCaseOf
public static ImmutableToUpperCaseOperator upperCaseOf(Expression expression)
Construct a new immutableToUpperCaseOperatorinstance.- Parameters:
expression- The value for theexpressionattribute- Returns:
- An immutable ToUpperCaseOperator instance
-
copyOf
public static ImmutableToUpperCaseOperator copyOf(ToUpperCaseOperator instance)
Creates an immutable copy of aToUpperCaseOperatorvalue. 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 ToUpperCaseOperator instance
-
builder
public static ImmutableToUpperCaseOperator.Builder builder()
Creates a builder forImmutableToUpperCaseOperator.ImmutableToUpperCaseOperator.builder() .expression(io.dialob.program.model.Expression) // requiredexpression.build();- Returns:
- A new ImmutableToUpperCaseOperator builder
-
-