public static enum TemplateNode.Priority extends Enum<TemplateNode.Priority>
| Enum Constant and Description |
|---|
HIGH_PRIORITY |
STANDARD |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static TemplateNode.Priority |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TemplateNode.Priority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TemplateNode.Priority STANDARD
public static final TemplateNode.Priority HIGH_PRIORITY
public static TemplateNode.Priority[] values()
for (TemplateNode.Priority c : TemplateNode.Priority.values()) System.out.println(c);
public static TemplateNode.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 nullpublic String toString()
toString in class Enum<TemplateNode.Priority>