public enum ExecutionMode extends Enum<ExecutionMode>
| Enum Constant and Description |
|---|
AUTO |
MANUAL |
RESERVED |
SEMIAUTO |
SIMULATION |
| Modifier and Type | Method and Description |
|---|---|
static ExecutionMode |
byValue(int value)
Get OccupationState by its value
|
int |
getValue()
Get enumeration value
|
static ExecutionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExecutionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExecutionMode AUTO
public static final ExecutionMode SEMIAUTO
public static final ExecutionMode MANUAL
public static final ExecutionMode RESERVED
public static final ExecutionMode SIMULATION
public static ExecutionMode[] values()
for (ExecutionMode c : ExecutionMode.values()) System.out.println(c);
public static ExecutionMode 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 nullpublic static ExecutionMode byValue(int value)
public int getValue()
Copyright © 2021. All rights reserved.