public enum ExpressionRewriterFlags extends Enum<ExpressionRewriterFlags>
Enum Constant and Description |
---|
LANDRVALUE |
LVALUE |
RVALUE |
Modifier and Type | Method and Description |
---|---|
static ExpressionRewriterFlags |
valueOf(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(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 © 2011-2021. All Rights Reserved.