public static enum ASTLatLon.TimeZoneType extends java.lang.Enum<ASTLatLon.TimeZoneType>
Enum Constant and Description |
---|
CST
use Central Standard Time zone
|
EST
use Eastern Standard Time zone
|
LONGITUDE
use longitude rather than a time zone
|
MST
use Mountain Standard Time zone
|
PST
use Pacific Standard Time zone
|
Modifier and Type | Method and Description |
---|---|
int |
getAdjust()
Gets the adjustment factor to use for this enumerated type.
|
java.lang.String |
toString()
Gets a printable string for this enumerated type.
|
static ASTLatLon.TimeZoneType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ASTLatLon.TimeZoneType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ASTLatLon.TimeZoneType LONGITUDE
public static final ASTLatLon.TimeZoneType EST
public static final ASTLatLon.TimeZoneType CST
public static final ASTLatLon.TimeZoneType MST
public static final ASTLatLon.TimeZoneType PST
public static ASTLatLon.TimeZoneType[] values()
for (ASTLatLon.TimeZoneType c : ASTLatLon.TimeZoneType.values()) System.out.println(c);
public static ASTLatLon.TimeZoneType 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 int getAdjust()
public java.lang.String toString()
toString
in class java.lang.Enum<ASTLatLon.TimeZoneType>