public enum EvaluationState extends Enum<EvaluationState>
Expression.| Enum Constant and Description |
|---|
READ
Read evaluation via
Expression.getValue(VariableContainer |
WRITE
Write evaluation via
Expression.setValue(Object, VariableContainer) |
| Modifier and Type | Method and Description |
|---|---|
static EvaluationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EvaluationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvaluationState READ
Expression.getValue(VariableContainerpublic static final EvaluationState WRITE
Expression.setValue(Object, VariableContainer)public static EvaluationState[] values()
for (EvaluationState c : EvaluationState.values()) System.out.println(c);
public static EvaluationState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021 Flowable. All rights reserved.