public enum ParserPhase extends Enum<ParserPhase>
This enum is not visible by clients.
| Enum Constant and Description |
|---|
DONE |
NONE |
PARSE_BLOCKS |
PARSE_INLINES |
PRE_PROCESS_BLOCKS |
PRE_PROCESS_PARAGRAPHS |
STARTING |
| Modifier and Type | Method and Description |
|---|---|
static ParserPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserPhase NONE
public static final ParserPhase STARTING
public static final ParserPhase PARSE_BLOCKS
public static final ParserPhase PRE_PROCESS_PARAGRAPHS
public static final ParserPhase PRE_PROCESS_BLOCKS
public static final ParserPhase PARSE_INLINES
public static final ParserPhase DONE
public static ParserPhase[] values()
for (ParserPhase c : ParserPhase.values()) System.out.println(c);
public static ParserPhase 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 © 2018. All rights reserved.