public static enum Text2Udom.parsingState extends Enum<Text2Udom.parsingState>
Enum Constant and Description |
---|
consume_characters
while consuming character data, will be ended by next command char.
|
look_for_tag
after a command lead-in character has been consumed
|
nothing_open
after an explicit close, or at the beginning of parsing.
|
skip_for_command
error recovery.
|
verbatim
verbatim mode, will NOT be ended by next command char, only by
explict end command and all known direct child elements.
|
Modifier and Type | Method and Description |
---|---|
static Text2Udom.parsingState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Text2Udom.parsingState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Text2Udom.parsingState nothing_open
public static final Text2Udom.parsingState look_for_tag
public static final Text2Udom.parsingState consume_characters
public static final Text2Udom.parsingState verbatim
public static final Text2Udom.parsingState skip_for_command
public static Text2Udom.parsingState[] values()
for (Text2Udom.parsingState c : Text2Udom.parsingState.values()) System.out.println(c);
public static Text2Udom.parsingState 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 nullsee also the complete user documentation .