
public static enum OverlayItem.HotspotPlace extends Enum<OverlayItem.HotspotPlace>
| Enum Constant and Description |
|---|
BOTTOM_CENTER |
CENTER |
LEFT_CENTER |
LOWER_LEFT_CORNER |
LOWER_RIGHT_CORNER |
NONE |
RIGHT_CENTER |
TOP_CENTER |
UPPER_LEFT_CORNER |
UPPER_RIGHT_CORNER |
| Modifier and Type | Method and Description |
|---|---|
static OverlayItem.HotspotPlace |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverlayItem.HotspotPlace[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OverlayItem.HotspotPlace NONE
public static final OverlayItem.HotspotPlace CENTER
public static final OverlayItem.HotspotPlace BOTTOM_CENTER
public static final OverlayItem.HotspotPlace TOP_CENTER
public static final OverlayItem.HotspotPlace RIGHT_CENTER
public static final OverlayItem.HotspotPlace LEFT_CENTER
public static final OverlayItem.HotspotPlace UPPER_RIGHT_CORNER
public static final OverlayItem.HotspotPlace LOWER_RIGHT_CORNER
public static final OverlayItem.HotspotPlace UPPER_LEFT_CORNER
public static final OverlayItem.HotspotPlace LOWER_LEFT_CORNER
public static OverlayItem.HotspotPlace[] values()
for (OverlayItem.HotspotPlace c : OverlayItem.HotspotPlace.values()) System.out.println(c);
public static OverlayItem.HotspotPlace 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 null