public enum ParserMode extends Enum<ParserMode>
Enum Constant and Description |
---|
COMPLETE_PARSE
Follow inclusions, parse function/method bodies.
|
COMPLETION_PARSE
Follow inclusions, parse function/method bodies, stop at a particular offset.
|
QUICK_PARSE
Do not follow inclusions, do not parse function/method bodies.
|
SELECTION_PARSE
Follow inclusions, parse function/method bodies, stop at a particular offset.
|
STRUCTURAL_PARSE
Follow inclusions, do not parse function/method bodies.
|
Modifier and Type | Method and Description |
---|---|
static ParserMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParserMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParserMode QUICK_PARSE
public static final ParserMode STRUCTURAL_PARSE
public static final ParserMode COMPLETE_PARSE
public static final ParserMode COMPLETION_PARSE
public static final ParserMode SELECTION_PARSE
public static ParserMode[] values()
for (ParserMode c : ParserMode.values()) System.out.println(c);
public static ParserMode 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 (c) IBM Corp. and others 2004, 2020. All Rights Reserved.