public enum CompileMode extends Enum<CompileMode>
Modifier and Type | Method and Description |
---|---|
static CompileMode |
getMode(String mode) |
static CompileMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CompileMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompileMode eval
public static final CompileMode single
public static final CompileMode exec
public static CompileMode[] values()
for (CompileMode c : CompileMode.values()) System.out.println(c);
public static CompileMode 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 nullpublic static CompileMode getMode(String mode)