public static enum TextPanel.Action extends Enum<TextPanel.Action>
Enum Constant and Description |
---|
CHECK
Check for changes; do nothing if input has not changed.
|
EXECUTE
Enforce execution of input.
|
PARSE
Enforce parsing of input.
|
TEST
Enforce testing of input.
|
Modifier and Type | Method and Description |
---|---|
static TextPanel.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TextPanel.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TextPanel.Action CHECK
public static final TextPanel.Action PARSE
public static final TextPanel.Action EXECUTE
public static final TextPanel.Action TEST
public static TextPanel.Action[] values()
for (TextPanel.Action c : TextPanel.Action.values()) System.out.println(c);
public static TextPanel.Action 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 © 2005–2015 BaseX Team. All rights reserved.