com.garmin.fit
Enum TimeZone
java.lang.Object
java.lang.Enum<TimeZone>
com.garmin.fit.TimeZone
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TimeZone>
public enum TimeZone
- extends java.lang.Enum<TimeZone>
Field Summary |
protected short |
value
|
Method Summary |
static TimeZone |
getByValue(java.lang.Short value)
|
static java.lang.String |
getStringFromValue(TimeZone value)
Retrieves the String Representation of the Value |
short |
getValue()
|
static TimeZone |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TimeZone[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ALMATY
public static final TimeZone ALMATY
BANGKOK
public static final TimeZone BANGKOK
BOMBAY
public static final TimeZone BOMBAY
BRASILIA
public static final TimeZone BRASILIA
CAIRO
public static final TimeZone CAIRO
CAPE_VERDE_IS
public static final TimeZone CAPE_VERDE_IS
DARWIN
public static final TimeZone DARWIN
ENIWETOK
public static final TimeZone ENIWETOK
FIJI
public static final TimeZone FIJI
HONG_KONG
public static final TimeZone HONG_KONG
ISLAMABAD
public static final TimeZone ISLAMABAD
KABUL
public static final TimeZone KABUL
MAGADAN
public static final TimeZone MAGADAN
MID_ATLANTIC
public static final TimeZone MID_ATLANTIC
MOSCOW
public static final TimeZone MOSCOW
MUSCAT
public static final TimeZone MUSCAT
NEWFOUNDLAND
public static final TimeZone NEWFOUNDLAND
SAMOA
public static final TimeZone SAMOA
SYDNEY
public static final TimeZone SYDNEY
TEHRAN
public static final TimeZone TEHRAN
TOKYO
public static final TimeZone TOKYO
US_ALASKA
public static final TimeZone US_ALASKA
US_ATLANTIC
public static final TimeZone US_ATLANTIC
US_CENTRAL
public static final TimeZone US_CENTRAL
US_EASTERN
public static final TimeZone US_EASTERN
US_HAWAII
public static final TimeZone US_HAWAII
US_MOUNTAIN
public static final TimeZone US_MOUNTAIN
US_PACIFIC
public static final TimeZone US_PACIFIC
OTHER
public static final TimeZone OTHER
AUCKLAND
public static final TimeZone AUCKLAND
KATHMANDU
public static final TimeZone KATHMANDU
EUROPE_WESTERN_WET
public static final TimeZone EUROPE_WESTERN_WET
EUROPE_CENTRAL_CET
public static final TimeZone EUROPE_CENTRAL_CET
EUROPE_EASTERN_EET
public static final TimeZone EUROPE_EASTERN_EET
JAKARTA
public static final TimeZone JAKARTA
PERTH
public static final TimeZone PERTH
ADELAIDE
public static final TimeZone ADELAIDE
BRISBANE
public static final TimeZone BRISBANE
TASMANIA
public static final TimeZone TASMANIA
ICELAND
public static final TimeZone ICELAND
AMSTERDAM
public static final TimeZone AMSTERDAM
ATHENS
public static final TimeZone ATHENS
BARCELONA
public static final TimeZone BARCELONA
BERLIN
public static final TimeZone BERLIN
BRUSSELS
public static final TimeZone BRUSSELS
BUDAPEST
public static final TimeZone BUDAPEST
COPENHAGEN
public static final TimeZone COPENHAGEN
DUBLIN
public static final TimeZone DUBLIN
HELSINKI
public static final TimeZone HELSINKI
LISBON
public static final TimeZone LISBON
LONDON
public static final TimeZone LONDON
MADRID
public static final TimeZone MADRID
MUNICH
public static final TimeZone MUNICH
OSLO
public static final TimeZone OSLO
PARIS
public static final TimeZone PARIS
PRAGUE
public static final TimeZone PRAGUE
REYKJAVIK
public static final TimeZone REYKJAVIK
ROME
public static final TimeZone ROME
STOCKHOLM
public static final TimeZone STOCKHOLM
VIENNA
public static final TimeZone VIENNA
WARSAW
public static final TimeZone WARSAW
ZURICH
public static final TimeZone ZURICH
QUEBEC
public static final TimeZone QUEBEC
ONTARIO
public static final TimeZone ONTARIO
MANITOBA
public static final TimeZone MANITOBA
SASKATCHEWAN
public static final TimeZone SASKATCHEWAN
ALBERTA
public static final TimeZone ALBERTA
BRITISH_COLUMBIA
public static final TimeZone BRITISH_COLUMBIA
BOISE
public static final TimeZone BOISE
BOSTON
public static final TimeZone BOSTON
CHICAGO
public static final TimeZone CHICAGO
DALLAS
public static final TimeZone DALLAS
DENVER
public static final TimeZone DENVER
KANSAS_CITY
public static final TimeZone KANSAS_CITY
LAS_VEGAS
public static final TimeZone LAS_VEGAS
LOS_ANGELES
public static final TimeZone LOS_ANGELES
MIAMI
public static final TimeZone MIAMI
MINNEAPOLIS
public static final TimeZone MINNEAPOLIS
NEW_YORK
public static final TimeZone NEW_YORK
NEW_ORLEANS
public static final TimeZone NEW_ORLEANS
PHOENIX
public static final TimeZone PHOENIX
SANTA_FE
public static final TimeZone SANTA_FE
SEATTLE
public static final TimeZone SEATTLE
WASHINGTON_DC
public static final TimeZone WASHINGTON_DC
US_ARIZONA
public static final TimeZone US_ARIZONA
CHITA
public static final TimeZone CHITA
EKATERINBURG
public static final TimeZone EKATERINBURG
IRKUTSK
public static final TimeZone IRKUTSK
KALININGRAD
public static final TimeZone KALININGRAD
KRASNOYARSK
public static final TimeZone KRASNOYARSK
NOVOSIBIRSK
public static final TimeZone NOVOSIBIRSK
PETROPAVLOVSK_KAMCHATSKIY
public static final TimeZone PETROPAVLOVSK_KAMCHATSKIY
SAMARA
public static final TimeZone SAMARA
VLADIVOSTOK
public static final TimeZone VLADIVOSTOK
MEXICO_CENTRAL
public static final TimeZone MEXICO_CENTRAL
MEXICO_MOUNTAIN
public static final TimeZone MEXICO_MOUNTAIN
MEXICO_PACIFIC
public static final TimeZone MEXICO_PACIFIC
CAPE_TOWN
public static final TimeZone CAPE_TOWN
WINKHOEK
public static final TimeZone WINKHOEK
LAGOS
public static final TimeZone LAGOS
RIYAHD
public static final TimeZone RIYAHD
VENEZUELA
public static final TimeZone VENEZUELA
AUSTRALIA_LH
public static final TimeZone AUSTRALIA_LH
SANTIAGO
public static final TimeZone SANTIAGO
MANUAL
public static final TimeZone MANUAL
AUTOMATIC
public static final TimeZone AUTOMATIC
INVALID
public static final TimeZone INVALID
value
protected short value
values
public static TimeZone[] 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 (TimeZone c : TimeZone.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TimeZone valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
getByValue
public static TimeZone getByValue(java.lang.Short value)
getStringFromValue
public static java.lang.String getStringFromValue(TimeZone value)
- Retrieves the String Representation of the Value
- Returns:
- The string representation of the value
getValue
public short getValue()