public static enum TimeSteppedEnvironment.OverActionsPolicy extends java.lang.Enum<TimeSteppedEnvironment.OverActionsPolicy>
Enum Constant and Description |
---|
failSecond
Fail the second action
|
ignoreSecond
Ignore the second action, it is considered as successfully executed
|
queue
Queue the second action request for future execution
|
Modifier and Type | Method and Description |
---|---|
static TimeSteppedEnvironment.OverActionsPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeSteppedEnvironment.OverActionsPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSteppedEnvironment.OverActionsPolicy queue
public static final TimeSteppedEnvironment.OverActionsPolicy failSecond
public static final TimeSteppedEnvironment.OverActionsPolicy ignoreSecond
public static TimeSteppedEnvironment.OverActionsPolicy[] values()
for (TimeSteppedEnvironment.OverActionsPolicy c : TimeSteppedEnvironment.OverActionsPolicy.values()) System.out.println(c);
public static TimeSteppedEnvironment.OverActionsPolicy 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