public static enum Context.UI extends java.lang.Enum<Context.UI> implements Context
Context.MapType, Context.UI| Enum Constant and Description |
|---|
Fullscreen
The Fullscreen map UI.
|
Minimap
The Minimap UI.
|
Webmap
The Webmap UI.
|
| Modifier and Type | Method and Description |
|---|---|
static Context.UI[] |
all()
Any/All UIs.
|
static Context.UI |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Context.UI[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Context.UI Fullscreen
public static final Context.UI Minimap
public static final Context.UI Webmap
public static Context.UI[] values()
for (Context.UI c : Context.UI.values()) System.out.println(c);
public static Context.UI 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 static Context.UI[] all()