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