public static enum RValueExpression.RValueType extends Enum<RValueExpression.RValueType>
| Enum Constant and Description |
|---|
_dereference |
_emptyObject |
_null |
_value |
| Modifier and Type | Method and Description |
|---|---|
static RValueExpression.RValueType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RValueExpression.RValueType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RValueExpression.RValueType _value
public static final RValueExpression.RValueType _dereference
public static final RValueExpression.RValueType _emptyObject
public static final RValueExpression.RValueType _null
public static RValueExpression.RValueType[] values()
for (RValueExpression.RValueType c : RValueExpression.RValueType.values()) System.out.println(c);
public static RValueExpression.RValueType 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 © 2015. All rights reserved.