public enum PlayerActionType extends java.lang.Enum<PlayerActionType>
| Modifier and Type | Method and Description |
|---|---|
static PlayerActionType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PlayerActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlayerActionType START_BREAK
public static final PlayerActionType ABORT_BREAK
public static final PlayerActionType STOP_BREAK
public static final PlayerActionType GET_UPDATED_BLOCK
public static final PlayerActionType DROP_ITEM
public static final PlayerActionType START_SLEEP
public static final PlayerActionType STOP_SLEEP
public static final PlayerActionType RESPAWN
public static final PlayerActionType JUMP
public static final PlayerActionType START_SPRINT
public static final PlayerActionType STOP_SPRINT
public static final PlayerActionType START_SNEAK
public static final PlayerActionType STOP_SNEAK
public static final PlayerActionType DIMENSION_CHANGE_REQUEST_OR_CREATIVE_DESTROY_BLOCK
public static final PlayerActionType DIMENSION_CHANGE_SUCCESS
public static final PlayerActionType START_GLIDE
public static final PlayerActionType STOP_GLIDE
public static final PlayerActionType BUILD_DENIED
public static final PlayerActionType CONTINUE_BREAK
public static final PlayerActionType CHANGE_SKIN
public static final PlayerActionType SET_ENCHANTMENT_SEED
public static final PlayerActionType START_SWIMMING
public static final PlayerActionType STOP_SWIMMING
public static final PlayerActionType START_SPIN_ATTACK
public static final PlayerActionType STOP_SPIN_ATTACK
public static final PlayerActionType BLOCK_INTERACT
public static final PlayerActionType BLOCK_PREDICT_DESTROY
public static final PlayerActionType BLOCK_CONTINUE_DESTROY
public static final PlayerActionType START_ITEM_USE_ON
public static final PlayerActionType STOP_ITEM_USE_ON
public static final PlayerActionType HANDLED_TELEPORT
public static final PlayerActionType MISSED_SWING
public static final PlayerActionType START_CRAWLING
public static final PlayerActionType STOP_CRAWLING
public static final PlayerActionType START_FLYING
public static final PlayerActionType STOP_FLYING
public static final PlayerActionType RECEIVED_SERVER_DATA
public static PlayerActionType[] values()
for (PlayerActionType c : PlayerActionType.values()) System.out.println(c);
public static PlayerActionType 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