public static enum EnumWrappers.PlayerAction extends Enum<EnumWrappers.PlayerAction>
| Enum Constant and Description |
|---|
OPEN_INVENTORY |
START_FALL_FLYING |
START_RIDING_JUMP |
START_SNEAKING |
START_SPRINTING |
STOP_RIDING_JUMP |
STOP_SLEEPING |
STOP_SNEAKING |
STOP_SPRINTING |
| Modifier and Type | Method and Description |
|---|---|
static EnumWrappers.PlayerAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumWrappers.PlayerAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumWrappers.PlayerAction START_SNEAKING
public static final EnumWrappers.PlayerAction STOP_SNEAKING
public static final EnumWrappers.PlayerAction STOP_SLEEPING
public static final EnumWrappers.PlayerAction START_SPRINTING
public static final EnumWrappers.PlayerAction STOP_SPRINTING
public static final EnumWrappers.PlayerAction START_RIDING_JUMP
public static final EnumWrappers.PlayerAction STOP_RIDING_JUMP
public static final EnumWrappers.PlayerAction OPEN_INVENTORY
public static final EnumWrappers.PlayerAction START_FALL_FLYING
public static EnumWrappers.PlayerAction[] values()
for (EnumWrappers.PlayerAction c : EnumWrappers.PlayerAction.values()) System.out.println(c);
public static EnumWrappers.PlayerAction 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 nullCopyright © 2012–2017 Comphenix and dmulloy2. Licensed under the GNU GPL v2.