public enum ECodeViewOption extends java.lang.Enum<ECodeViewOption>
Modifier and Type | Class and Description |
---|---|
static class |
ECodeViewOption.ETextViewOption
Options for processing which is done on the file content (plain text) before
scanning.
|
static class |
ECodeViewOption.ETokenViewOption
Options for processing which is done on the token stream after scanning and
before parsing.
|
Enum Constant and Description |
---|
FILTERED
filtered text, not preprocessed.
|
FILTERED_PREPROCESSED
filtered text, preprocessed (global define/macro resolution).
|
UNFILTERED
unfiltered text, not preprocessed.
|
UNFILTERED_PREPROCESSED
unfiltered text, preprocessed (only file-local define/macro resolution)
|
Modifier and Type | Field and Description |
---|---|
ECodeViewOption.ETextViewOption |
textView
Processing which is executed on the file content (plain text) before scanning
(token generation).
|
ECodeViewOption.ETokenViewOption |
tokenView
Processing which is executed on the token stream after scanning and before
parsing.
|
Modifier and Type | Method and Description |
---|---|
static ECodeViewOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ECodeViewOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECodeViewOption UNFILTERED
public static final ECodeViewOption UNFILTERED_PREPROCESSED
public static final ECodeViewOption FILTERED
public static final ECodeViewOption FILTERED_PREPROCESSED
public final ECodeViewOption.ETextViewOption textView
public final ECodeViewOption.ETokenViewOption tokenView
public static ECodeViewOption[] values()
for (ECodeViewOption c : ECodeViewOption.values()) System.out.println(c);
public static ECodeViewOption valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null