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