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