public enum ECodeViewOption extends java.lang.Enum<ECodeViewOption>
| Modifier and Type | Class and Description | 
|---|---|
| static class  | ECodeViewOption.ETextViewOptionOptions for processing which is done on the file content (plain text) before
 scanning. | 
| static class  | ECodeViewOption.ETokenViewOptionOptions for processing which is done on the token stream after scanning and
 before parsing. | 
| Enum Constant and Description | 
|---|
| FILTEREDfiltered text, not preprocessed. | 
| FILTERED_PREPROCESSEDfiltered text, preprocessed (global define/macro resolution). | 
| UNFILTEREDunfiltered text, not preprocessed. | 
| UNFILTERED_PREPROCESSEDunfiltered text, preprocessed (only file-local define/macro resolution) | 
| Modifier and Type | Field and Description | 
|---|---|
| ECodeViewOption.ETextViewOption | textViewProcessing which is executed on the file content (plain text) before scanning
 (token generation). | 
| ECodeViewOption.ETokenViewOption | tokenViewProcessing 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