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