public static enum AreaOverlay.Area extends java.lang.Enum<AreaOverlay.Area>
| Enum Constant and Description |
|---|
BOTTOM
The bottom one
|
LEFT
The left one
|
NONE
No area
|
RIGHT
The right one
|
TOP
The top one
|
| Modifier and Type | Method and Description |
|---|---|
static AreaOverlay.Area |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AreaOverlay.Area[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AreaOverlay.Area NONE
public static final AreaOverlay.Area TOP
public static final AreaOverlay.Area LEFT
public static final AreaOverlay.Area RIGHT
public static final AreaOverlay.Area BOTTOM
public static AreaOverlay.Area[] values()
for (AreaOverlay.Area c : AreaOverlay.Area.values()) System.out.println(c);
public static AreaOverlay.Area 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