public static enum ECodeViewOption.ETokenViewOption extends java.lang.Enum<ECodeViewOption.ETokenViewOption>
| Enum Constant and Description |
|---|
PREPROCESSED
The tokens are preprocessed including global information (resolves defines
and macro definitions from e.g., C/C++ headers).
|
PREPROCESSED_LOCAL
The tokens are preprocessed without global information (only defines and
macro definitions from the current file are used).
|
RAW
The raw tokens are were not preprocessed (after scanning).
|
| Modifier and Type | Method and Description |
|---|---|
static ECodeViewOption.ETokenViewOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ECodeViewOption.ETokenViewOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECodeViewOption.ETokenViewOption RAW
ECodeViewOption.ETextViewOption).public static final ECodeViewOption.ETokenViewOption PREPROCESSED
public static final ECodeViewOption.ETokenViewOption PREPROCESSED_LOCAL
public static ECodeViewOption.ETokenViewOption[] values()
for (ECodeViewOption.ETokenViewOption c : ECodeViewOption.ETokenViewOption.values()) System.out.println(c);
public static ECodeViewOption.ETokenViewOption 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