public static enum AMERICA.ARGENTINA extends java.lang.Enum<AMERICA.ARGENTINA> implements StdZoneIdentifier
Contains all standard timezone IDs in Argentina.
| Enum Constant and Description |
|---|
BUENOS_AIRES |
CATAMARCA |
CORDOBA |
JUJUY |
LA_RIOJA |
MENDOZA |
RIO_GALLEGOS |
SALTA |
SAN_JUAN |
SAN_LUIS |
TUCUMAN |
USHUAIA |
| 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 AMERICA.ARGENTINA |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AMERICA.ARGENTINA[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AMERICA.ARGENTINA BUENOS_AIRES
public static final AMERICA.ARGENTINA CATAMARCA
public static final AMERICA.ARGENTINA CORDOBA
public static final AMERICA.ARGENTINA JUJUY
public static final AMERICA.ARGENTINA LA_RIOJA
public static final AMERICA.ARGENTINA MENDOZA
public static final AMERICA.ARGENTINA RIO_GALLEGOS
public static final AMERICA.ARGENTINA SALTA
public static final AMERICA.ARGENTINA SAN_JUAN
public static final AMERICA.ARGENTINA SAN_LUIS
public static final AMERICA.ARGENTINA TUCUMAN
public static final AMERICA.ARGENTINA USHUAIA
public static AMERICA.ARGENTINA[] values()
for (AMERICA.ARGENTINA c : AMERICA.ARGENTINA.values()) System.out.println(c);
public static AMERICA.ARGENTINA 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