public enum OptionType extends Enum<OptionType>
| Enum Constant and Description | 
|---|
Debug
An option only relevant when debugging the compiler. 
 | 
Expert
An option only relevant in corner cases and for fine-tuning. 
 | 
User
An option common for users to apply. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static OptionType | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static OptionType[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final OptionType User
public static final OptionType Expert
public static final OptionType Debug
public static OptionType[] values()
for (OptionType c : OptionType.values()) System.out.println(c);
public static OptionType 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 null