public enum GeoCountryFormat extends Enum<GeoCountryFormat>
| Enum Constant and Description |
|---|
ISO3166_A2
ISO 3166 2-letter Codes.
|
ISO3166_A3
ISO 3166 3-letter Codes.
|
ISO3166_Number
ISO 3166 number Codes.
|
| Modifier and Type | Method and Description |
|---|---|
static GeoCountryFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GeoCountryFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GeoCountryFormat ISO3166_A2
public static final GeoCountryFormat ISO3166_A3
public static final GeoCountryFormat ISO3166_Number
public static GeoCountryFormat[] values()
for (GeoCountryFormat c : GeoCountryFormat.values()) System.out.println(c);
public static GeoCountryFormat 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 © 2013-2019 Department of Linguistics, Tübingen University. All Rights Reserved.