public enum CapitalMarker extends java.lang.Enum<CapitalMarker>
| Enum Constant and Description |
|---|
AREA_CENTER
Area center
|
AREA_REGION_CENTER
Both Area and Region center simultaneously
|
OTHER
Other cases or location is not a center
|
REGION_CENTER
Region center
|
REGION_CENTRAL_AREA
Central area of the region
|
UNKNOWN
Catch-all constant for unrecognized response contents
|
| Modifier and Type | Method and Description |
|---|---|
static CapitalMarker |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CapitalMarker[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CapitalMarker AREA_CENTER
public static final CapitalMarker REGION_CENTER
public static final CapitalMarker AREA_REGION_CENTER
public static final CapitalMarker REGION_CENTRAL_AREA
public static final CapitalMarker OTHER
public static final CapitalMarker UNKNOWN
public static CapitalMarker[] values()
for (CapitalMarker c : CapitalMarker.values()) System.out.println(c);
public static CapitalMarker 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