public enum EvalObjectDisposition extends java.lang.Enum<EvalObjectDisposition>
Invokable.eval(Object, java.io.Serializable, EvalArgs) method.| Enum Constant and Description |
|---|
Delete
Remove the object from the StateServer store.
|
NoAction
Take no action.
|
Update
Update the object in the StateServer store.
|
| Modifier and Type | Method and Description |
|---|---|
static EvalObjectDisposition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EvalObjectDisposition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EvalObjectDisposition NoAction
public static final EvalObjectDisposition Update
public static final EvalObjectDisposition Delete
public static EvalObjectDisposition[] values()
for (EvalObjectDisposition c : EvalObjectDisposition.values()) System.out.println(c);
public static EvalObjectDisposition valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null