public static enum ImageProvider.OverlayPosition extends Enum<ImageProvider.OverlayPosition>
Enum Constant and Description |
---|
NORTHEAST
North east
|
NORTHWEST
North west
|
SOUTHEAST
South east
|
SOUTHWEST
South west
|
Modifier and Type | Method and Description |
---|---|
static ImageProvider.OverlayPosition |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImageProvider.OverlayPosition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImageProvider.OverlayPosition NORTHWEST
public static final ImageProvider.OverlayPosition NORTHEAST
public static final ImageProvider.OverlayPosition SOUTHWEST
public static final ImageProvider.OverlayPosition SOUTHEAST
public static ImageProvider.OverlayPosition[] values()
for (ImageProvider.OverlayPosition c : ImageProvider.OverlayPosition.values()) System.out.println(c);
public static ImageProvider.OverlayPosition 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