Enum CEntityActionPacket.Action
- java.lang.Object
-
- java.lang.Enum<CEntityActionPacket.Action>
-
- net.minecraft.network.play.client.CEntityActionPacket.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CEntityActionPacket.Action>
- Enclosing class:
- CEntityActionPacket
public static enum CEntityActionPacket.Action extends java.lang.Enum<CEntityActionPacket.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OPEN_INVENTORY
PRESS_SHIFT_KEY
RELEASE_SHIFT_KEY
START_FALL_FLYING
START_RIDING_JUMP
START_SPRINTING
STOP_RIDING_JUMP
STOP_SLEEPING
STOP_SPRINTING
-
Constructor Summary
Constructors Modifier Constructor Description private
Action()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CEntityActionPacket.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CEntityActionPacket.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRESS_SHIFT_KEY
public static final CEntityActionPacket.Action PRESS_SHIFT_KEY
-
RELEASE_SHIFT_KEY
public static final CEntityActionPacket.Action RELEASE_SHIFT_KEY
-
STOP_SLEEPING
public static final CEntityActionPacket.Action STOP_SLEEPING
-
START_SPRINTING
public static final CEntityActionPacket.Action START_SPRINTING
-
STOP_SPRINTING
public static final CEntityActionPacket.Action STOP_SPRINTING
-
START_RIDING_JUMP
public static final CEntityActionPacket.Action START_RIDING_JUMP
-
STOP_RIDING_JUMP
public static final CEntityActionPacket.Action STOP_RIDING_JUMP
-
OPEN_INVENTORY
public static final CEntityActionPacket.Action OPEN_INVENTORY
-
START_FALL_FLYING
public static final CEntityActionPacket.Action START_FALL_FLYING
-
-
Method Detail
-
values
public static CEntityActionPacket.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CEntityActionPacket.Action c : CEntityActionPacket.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CEntityActionPacket.Action valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-