Enum GeocoderStatus
- java.lang.Object
-
- java.lang.Enum<GeocoderStatus>
-
- org.apache.camel.component.geocoder.GeocoderStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<GeocoderStatus>
public enum GeocoderStatus extends Enum<GeocoderStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_NOT_CONFIGURED
ERROR
INVALID_REQUEST
OK
OVER_DAILY_LIMIT
OVER_QUERY_LIMIT
REQUEST_DENIED
UNKNOWN_ERROR
ZERO_RESULTS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
ERROR
public static final GeocoderStatus ERROR
-
INVALID_REQUEST
public static final GeocoderStatus INVALID_REQUEST
-
ACCESS_NOT_CONFIGURED
public static final GeocoderStatus ACCESS_NOT_CONFIGURED
-
OK
public static final GeocoderStatus OK
-
OVER_QUERY_LIMIT
public static final GeocoderStatus OVER_QUERY_LIMIT
-
OVER_DAILY_LIMIT
public static final GeocoderStatus OVER_DAILY_LIMIT
-
REQUEST_DENIED
public static final GeocoderStatus REQUEST_DENIED
-
UNKNOWN_ERROR
public static final GeocoderStatus UNKNOWN_ERROR
-
ZERO_RESULTS
public static final GeocoderStatus ZERO_RESULTS
-
-
Method Detail
-
values
public static GeocoderStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GeocoderStatus c : GeocoderStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeocoderStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
fromValue
public static GeocoderStatus fromValue(String v)
-
-