public enum EnumPacketDirection extends java.lang.Enum<EnumPacketDirection>
| Enum Constant and Description |
|---|
CLIENTBOUND |
SERVERBOUND |
| Modifier and Type | Method and Description |
|---|---|
static EnumPacketDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumPacketDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumPacketDirection SERVERBOUND
public static final EnumPacketDirection CLIENTBOUND
public static EnumPacketDirection[] values()
for (EnumPacketDirection c : EnumPacketDirection.values()) System.out.println(c);
public static EnumPacketDirection 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