public enum EvalObjectDisposition extends 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(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(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 (C) 2007-2014 ScaleOut Software, Inc.