public enum GeocoderStatus extends Enum<GeocoderStatus>
Enum Constant and Description |
---|
ACCESS_NOT_CONFIGURED |
ERROR |
INVALID_REQUEST |
OK |
OVER_DAILY_LIMIT |
OVER_QUERY_LIMIT |
REQUEST_DENIED |
UNKNOWN_ERROR |
ZERO_RESULTS |
Modifier and Type | Method and Description |
---|---|
static GeocoderStatus |
fromValue(String v) |
String |
value() |
static GeocoderStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeocoderStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeocoderStatus ERROR
public static final GeocoderStatus INVALID_REQUEST
public static final GeocoderStatus ACCESS_NOT_CONFIGURED
public static final GeocoderStatus OK
public static final GeocoderStatus OVER_QUERY_LIMIT
public static final GeocoderStatus OVER_DAILY_LIMIT
public static final GeocoderStatus REQUEST_DENIED
public static final GeocoderStatus UNKNOWN_ERROR
public static final GeocoderStatus ZERO_RESULTS
public static GeocoderStatus[] values()
for (GeocoderStatus c : GeocoderStatus.values()) System.out.println(c);
public static GeocoderStatus 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 nullpublic String value()
public static GeocoderStatus fromValue(String v)
Apache Camel