org.stellarium
Enum StelApp.TZ_FORMAT

java.lang.Object
  extended by java.lang.Enum<StelApp.TZ_FORMAT>
      extended by org.stellarium.StelApp.TZ_FORMAT
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<StelApp.TZ_FORMAT>
Enclosing class:
StelApp

public static enum StelApp.TZ_FORMAT
extends java.lang.Enum<StelApp.TZ_FORMAT>


Enum Constant Summary
CUSTOM
           
GMT_SHIFT
           
SYSTEM_DEFAULT
           
 
Method Summary
static StelApp.TZ_FORMAT valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StelApp.TZ_FORMAT[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CUSTOM

public static final StelApp.TZ_FORMAT CUSTOM

GMT_SHIFT

public static final StelApp.TZ_FORMAT GMT_SHIFT

SYSTEM_DEFAULT

public static final StelApp.TZ_FORMAT SYSTEM_DEFAULT
Method Detail

values

public static final StelApp.TZ_FORMAT[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(StelApp.TZ_FORMAT c : StelApp.TZ_FORMAT.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static StelApp.TZ_FORMAT 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