public static enum AreaOfInterest.AoiDisplay extends java.lang.Enum<AreaOfInterest.AoiDisplay>
| Enum Constant and Description |
|---|
CLIP
Set a clip for the area (IE only show the area of interest).
|
NONE
Do not show the Area of interest on the map.
|
RENDER
Draw the entire map and render the AOI polygon on the map.
|
| Modifier and Type | Method and Description |
|---|---|
static AreaOfInterest.AoiDisplay |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AreaOfInterest.AoiDisplay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AreaOfInterest.AoiDisplay RENDER
public static final AreaOfInterest.AoiDisplay CLIP
public static final AreaOfInterest.AoiDisplay NONE
public static AreaOfInterest.AoiDisplay[] values()
for (AreaOfInterest.AoiDisplay c : AreaOfInterest.AoiDisplay.values()) System.out.println(c);
public static AreaOfInterest.AoiDisplay 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