public enum EUROPE extends java.lang.Enum<EUROPE> implements StdZoneIdentifier
Contains all standard timezone IDs in Europe.
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
canonical()
Represents the full canonical name of a timezone (for
example "Europe/Paris" or "UTC+01:00").
|
java.lang.String |
getCity()
Yields the exemplar city.
|
java.lang.String |
getCountry()
Yields the belonging country in ISO-3166-format - related to the exemplar city.
|
java.lang.String |
getRegion()
Yields the timezone region - in most cases a continent.
|
static EUROPE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EUROPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EUROPE AMSTERDAM
public static final EUROPE ANDORRA
public static final EUROPE ATHENS
public static final EUROPE BELGRADE
public static final EUROPE BERLIN
public static final EUROPE BRATISLAVA
public static final EUROPE BRUSSELS
public static final EUROPE BUCHAREST
public static final EUROPE BUDAPEST
public static final EUROPE CHISINAU
public static final EUROPE COPENHAGEN
public static final EUROPE DUBLIN
public static final EUROPE GIBRALTAR
public static final EUROPE GUERNSEY
public static final EUROPE HELSINKI
public static final EUROPE ISLE_OF_MAN
public static final EUROPE ISTANBUL
public static final EUROPE JERSEY
public static final EUROPE KALININGRAD
public static final EUROPE KIEV
public static final EUROPE LISBON
public static final EUROPE LJUBLJANA
public static final EUROPE LONDON
public static final EUROPE LUXEMBOURG
public static final EUROPE MADRID
public static final EUROPE MALTA
public static final EUROPE MARIEHAMN
public static final EUROPE MINSK
public static final EUROPE MONACO
public static final EUROPE MOSCOW
public static final EUROPE OSLO
public static final EUROPE PARIS
public static final EUROPE PODGORICA
public static final EUROPE PRAGUE
public static final EUROPE RIGA
public static final EUROPE ROME
public static final EUROPE SAMARA
public static final EUROPE SAN_MARINO
public static final EUROPE SARAJEVO
public static final EUROPE SIMFEROPOL
public static final EUROPE SOFIA
public static final EUROPE SKOPJE
public static final EUROPE STOCKHOLM
public static final EUROPE TALLINN
public static final EUROPE TIRANE
public static final EUROPE UZHGOROD
public static final EUROPE VADUZ
public static final EUROPE VATICAN
public static final EUROPE VIENNA
public static final EUROPE VILNIUS
public static final EUROPE VOLGOGRAD
public static final EUROPE WARSAW
public static final EUROPE ZAGREB
public static final EUROPE ZAPOROZHYE
public static final EUROPE ZURICH
public static EUROPE[] values()
for (EUROPE c : EUROPE.values()) System.out.println(c);
public static EUROPE 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 canonical()
TZIDRepresents the full canonical name of a timezone (for example "Europe/Paris" or "UTC+01:00").
public java.lang.String getRegion()
StdZoneIdentifierYields the timezone region - in most cases a continent.
getRegion in interface StdZoneIdentifierpublic java.lang.String getCity()
StdZoneIdentifierYields the exemplar city.
getCity in interface StdZoneIdentifierpublic java.lang.String getCountry()
StdZoneIdentifierYields the belonging country in ISO-3166-format - related to the exemplar city.
getCountry in interface StdZoneIdentifier