public enum GeoLocations extends java.lang.Enum<GeoLocations>
| Enum Constant and Description |
|---|
GEO_AT |
GEO_CH |
GEO_DE |
GEO_DE_AT_CH |
GEO_DE_AT_CH_EU |
GEO_DE_FR |
GEO_NONE |
GEO_WELT |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getDescription() |
static GeoLocations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GeoLocations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoLocations GEO_NONE
public static final GeoLocations GEO_DE
public static final GeoLocations GEO_DE_FR
public static final GeoLocations GEO_AT
public static final GeoLocations GEO_CH
public static final GeoLocations GEO_WELT
public static final GeoLocations GEO_DE_AT_CH
public static final GeoLocations GEO_DE_AT_CH_EU
public static GeoLocations[] values()
for (GeoLocations c : GeoLocations.values()) System.out.println(c);
public static GeoLocations 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 nullpublic java.lang.String getDescription()