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