protected static enum GeographicExtent.Type extends Enum<GeographicExtent.Type>
| Enum Constant and Description |
|---|
BOUNDING_BOX |
BOUNDING_POLYGON |
DESCRIPTION |
| Modifier and Type | Method and Description |
|---|---|
static GeographicExtent.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeographicExtent.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeographicExtent.Type BOUNDING_POLYGON
public static final GeographicExtent.Type BOUNDING_BOX
public static final GeographicExtent.Type DESCRIPTION
public static GeographicExtent.Type[] values()
for (GeographicExtent.Type c : GeographicExtent.Type.values()) System.out.println(c);
public static GeographicExtent.Type 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 nullCopyright © 2019. All Rights Reserved.