public enum NetworkSide extends Enum<NetworkSide>
| Enum Constant and Description |
|---|
CLIENTBOUND |
SERVERBOUND |
| Modifier and Type | Method and Description |
|---|---|
static NetworkSide |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NetworkSide[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NetworkSide SERVERBOUND
public static final NetworkSide CLIENTBOUND
public static NetworkSide[] values()
for (NetworkSide c : NetworkSide.values()) System.out.println(c);
public static NetworkSide valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null