public static enum CardinalConstraint.Type extends java.lang.Enum<CardinalConstraint.Type>
| Enum Constant and Description |
|---|
East |
EQUAL |
NO |
North |
NorthEast |
NorthWest |
South |
SouthEast |
SouthWest |
West |
| Modifier and Type | Method and Description |
|---|---|
static CardinalConstraint.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CardinalConstraint.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CardinalConstraint.Type North
public static final CardinalConstraint.Type West
public static final CardinalConstraint.Type South
public static final CardinalConstraint.Type East
public static final CardinalConstraint.Type NorthEast
public static final CardinalConstraint.Type NorthWest
public static final CardinalConstraint.Type SouthEast
public static final CardinalConstraint.Type SouthWest
public static final CardinalConstraint.Type EQUAL
public static final CardinalConstraint.Type NO
public static CardinalConstraint.Type[] values()
for (CardinalConstraint.Type c : CardinalConstraint.Type.values()) System.out.println(c);
public static CardinalConstraint.Type 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