public static enum PacketPlayerMove.MoveType extends java.lang.Enum<PacketPlayerMove.MoveType>
Enum Constant and Description |
---|
CLAIM
Claiming a new convex object.
|
END
No more moves remain for the player.
|
MERGE
Merging two convex objects.
|
Modifier and Type | Method and Description |
---|---|
static PacketPlayerMove.MoveType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PacketPlayerMove.MoveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PacketPlayerMove.MoveType CLAIM
public static final PacketPlayerMove.MoveType MERGE
public static final PacketPlayerMove.MoveType END
public static PacketPlayerMove.MoveType[] values()
for (PacketPlayerMove.MoveType c : PacketPlayerMove.MoveType.values()) System.out.println(c);
public static PacketPlayerMove.MoveType 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