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