public enum UiLayer extends Enum<UiLayer>
| Modifier and Type | Method and Description |
|---|---|
static UiLayer |
defaultLayer()
Returns the default layer (for those elements that do not explicitly
define which layer they belong to).
|
static UiLayer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UiLayer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UiLayer PACKET
public static final UiLayer OPTICAL
public static UiLayer[] values()
for (UiLayer c : UiLayer.values()) System.out.println(c);
public static UiLayer 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 nullpublic static UiLayer defaultLayer()