public static enum UI.Priority extends Enum<UI.Priority>
| Enum Constant and Description |
|---|
DEBUG |
ERROR |
HIGH |
LOW |
NONE |
NORMAL |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static UI.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UI.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UI.Priority NONE
public static final UI.Priority ERROR
public static final UI.Priority WARNING
public static final UI.Priority HIGH
public static final UI.Priority NORMAL
public static final UI.Priority LOW
public static final UI.Priority DEBUG
public static UI.Priority[] values()
for (UI.Priority c : UI.Priority.values()) System.out.println(c);
public static UI.Priority 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 nullCopyright © 2015. All rights reserved.