org.apache.directory.shared.util
Enum GeneralizedTime.TimeZoneFormat

java.lang.Object
  extended by java.lang.Enum<GeneralizedTime.TimeZoneFormat>
      extended by org.apache.directory.shared.util.GeneralizedTime.TimeZoneFormat
All Implemented Interfaces:
Serializable, Comparable<GeneralizedTime.TimeZoneFormat>
Enclosing class:
GeneralizedTime

public static enum GeneralizedTime.TimeZoneFormat
extends Enum<GeneralizedTime.TimeZoneFormat>

The time zone format of the generalized time.


Enum Constant Summary
DIFF_HOUR
          g-differential format, using hour only.
DIFF_HOUR_MINUTE
          g-differential format, using hour and minute.
Z
          g-time-zone (Zulu) format.
 
Method Summary
static GeneralizedTime.TimeZoneFormat valueOf(String name)
          Returns the enum constant of this type with the specified name.
static GeneralizedTime.TimeZoneFormat[] 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
 

Enum Constant Detail

Z

public static final GeneralizedTime.TimeZoneFormat Z
g-time-zone (Zulu) format.


DIFF_HOUR

public static final GeneralizedTime.TimeZoneFormat DIFF_HOUR
g-differential format, using hour only.


DIFF_HOUR_MINUTE

public static final GeneralizedTime.TimeZoneFormat DIFF_HOUR_MINUTE
g-differential format, using hour and minute.

Method Detail

values

public static GeneralizedTime.TimeZoneFormat[] 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 (GeneralizedTime.TimeZoneFormat c : GeneralizedTime.TimeZoneFormat.values())
    System.out.println(c);

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

valueOf

public static GeneralizedTime.TimeZoneFormat valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2003-2012 The Apache Software Foundation. All Rights Reserved.