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