public static enum LowLevelStateModelUpdater.RecursionControl extends Enum<LowLevelStateModelUpdater.RecursionControl>
| Enum Constant and Description | 
|---|
AVOID_RECURSION
Disable recursive calls. 
 | 
EXECUTE_AFTER
Enqueue and execute after. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static LowLevelStateModelUpdater.RecursionControl | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static LowLevelStateModelUpdater.RecursionControl[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final LowLevelStateModelUpdater.RecursionControl AVOID_RECURSION
Disable recursive calls. The top-most method invocation will execute. Recursive calls generated as a result of the top-most invocation will return immediately (no-op).
public static final LowLevelStateModelUpdater.RecursionControl EXECUTE_AFTER
Enqueue and execute after. The top-most invocation will execute immediately. Recursive calls generated as a result of the top-most invocation will be queued and executed in FIFO fashion just before the top-most invocation returns.
public static LowLevelStateModelUpdater.RecursionControl[] values()
for (LowLevelStateModelUpdater.RecursionControl c : LowLevelStateModelUpdater.RecursionControl.values()) System.out.println(c);
public static LowLevelStateModelUpdater.RecursionControl 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 © 2010 - 2018 edorasware ag. All Rights Reserved.