public static enum Compiler.C extends Enum<Compiler.C>
| Enum Constant and Description |
|---|
EVAL |
EXPRESSION |
RETURN |
STATEMENT |
| Modifier and Type | Method and Description |
|---|---|
static Compiler.C |
valueOf(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(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 nullCopyright © 2018. All rights reserved.