public static enum Address.QcGeoAccuracy extends Enum<Address.QcGeoAccuracy>
| Enum Constant and Description |
|---|
ACCURATE |
CITY |
NEAREST_HOME |
SETTLEMENT |
STREET |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static Address.QcGeoAccuracy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Address.QcGeoAccuracy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Address.QcGeoAccuracy ACCURATE
public static final Address.QcGeoAccuracy NEAREST_HOME
public static final Address.QcGeoAccuracy STREET
public static final Address.QcGeoAccuracy SETTLEMENT
public static final Address.QcGeoAccuracy CITY
public static final Address.QcGeoAccuracy UNDEFINED
public static Address.QcGeoAccuracy[] values()
for (Address.QcGeoAccuracy c : Address.QcGeoAccuracy.values()) System.out.println(c);
public static Address.QcGeoAccuracy 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 © 2016. All rights reserved.