Enum SPlayerListItemPacket.Action
- java.lang.Object
-
- java.lang.Enum<SPlayerListItemPacket.Action>
-
- net.minecraft.network.play.server.SPlayerListItemPacket.Action
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SPlayerListItemPacket.Action>
- Enclosing class:
- SPlayerListItemPacket
public static enum SPlayerListItemPacket.Action extends java.lang.Enum<SPlayerListItemPacket.Action>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_PLAYER
REMOVE_PLAYER
UPDATE_DISPLAY_NAME
UPDATE_GAME_MODE
UPDATE_LATENCY
-
Constructor Summary
Constructors Modifier Constructor Description private
Action()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SPlayerListItemPacket.Action
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SPlayerListItemPacket.Action[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADD_PLAYER
public static final SPlayerListItemPacket.Action ADD_PLAYER
-
UPDATE_GAME_MODE
public static final SPlayerListItemPacket.Action UPDATE_GAME_MODE
-
UPDATE_LATENCY
public static final SPlayerListItemPacket.Action UPDATE_LATENCY
-
UPDATE_DISPLAY_NAME
public static final SPlayerListItemPacket.Action UPDATE_DISPLAY_NAME
-
REMOVE_PLAYER
public static final SPlayerListItemPacket.Action REMOVE_PLAYER
-
-
Method Detail
-
values
public static SPlayerListItemPacket.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 (SPlayerListItemPacket.Action c : SPlayerListItemPacket.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 SPlayerListItemPacket.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
-
-