public static enum DecodedControlAction.Action extends java.lang.Enum<DecodedControlAction.Action>
All recognized actions.
| Enum Constant and Description |
|---|
MOVE_BACKWARDS |
MOVE_FORWARD |
RECENTER |
STOP |
USER_1 |
USER_2 |
USER_3 |
| Modifier and Type | Method and Description |
|---|---|
static DecodedControlAction.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecodedControlAction.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecodedControlAction.Action MOVE_FORWARD
public static final DecodedControlAction.Action MOVE_BACKWARDS
public static final DecodedControlAction.Action STOP
public static final DecodedControlAction.Action RECENTER
public static final DecodedControlAction.Action USER_1
public static final DecodedControlAction.Action USER_2
public static final DecodedControlAction.Action USER_3
public static DecodedControlAction.Action[] values()
for (DecodedControlAction.Action c : DecodedControlAction.Action.values()) System.out.println(c);
public static DecodedControlAction.Action 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