public static enum Compiler.C extends java.lang.Enum<Compiler.C>
| Enum Constant and Description | 
|---|
| EVAL | 
| EXPRESSION | 
| RETURN | 
| STATEMENT | 
| Modifier and Type | Method and Description | 
|---|---|
| static Compiler.C | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Compiler.C[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Compiler.C STATEMENT
public static final Compiler.C EXPRESSION
public static final Compiler.C RETURN
public static final Compiler.C EVAL
public static Compiler.C[] values()
for (Compiler.C c : Compiler.C.values()) System.out.println(c);
public static Compiler.C 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