public enum Expression extends java.lang.Enum<Expression>
| Enum Constant and Description |
|---|
METHOD_EXPRESSION |
UNSET |
VALUE_EXPRESSION |
| Modifier and Type | Field and Description |
|---|---|
static Expression |
DEFAULT |
| Modifier and Type | Method and Description |
|---|---|
static Expression |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Expression[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expression METHOD_EXPRESSION
public static final Expression VALUE_EXPRESSION
public static final Expression UNSET
public static final Expression DEFAULT
public static Expression[] values()
for (Expression c : Expression.values()) System.out.println(c);
public static Expression 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 nullCopyright 2017 ICEsoft Technologies Canada Corp., All Rights Reserved.