public static enum RuntimeFlags.ExecutionControlMode extends Enum<RuntimeFlags.ExecutionControlMode>
| Enum Constant and Description | 
|---|
| MANUAL_CONTROL | 
| SCRIPT_CONTROL | 
| TACTICAL_CONTROL | 
| Modifier and Type | Method and Description | 
|---|---|
| static RuntimeFlags.ExecutionControlMode | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RuntimeFlags.ExecutionControlMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RuntimeFlags.ExecutionControlMode TACTICAL_CONTROL
public static final RuntimeFlags.ExecutionControlMode SCRIPT_CONTROL
public static final RuntimeFlags.ExecutionControlMode MANUAL_CONTROL
public static RuntimeFlags.ExecutionControlMode[] values()
for (RuntimeFlags.ExecutionControlMode c : RuntimeFlags.ExecutionControlMode.values()) System.out.println(c);
public static RuntimeFlags.ExecutionControlMode 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 null