public static enum Indication.Action extends java.lang.Enum<Indication.Action>
Enum Constant and Description |
---|
CHANGE_FLOOR |
END |
GO_AHEAD |
INVALID_ACTION |
TURN |
Modifier and Type | Method and Description |
---|---|
static Indication.Action |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Indication.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indication.Action INVALID_ACTION
public static final Indication.Action TURN
public static final Indication.Action GO_AHEAD
public static final Indication.Action CHANGE_FLOOR
public static final Indication.Action END
public static Indication.Action[] values()
for (Indication.Action c : Indication.Action.values()) System.out.println(c);
public static Indication.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