Sky View Café - Java

org.shetline.util
Enum DateUtil.ParseOption

java.lang.Object
  extended by java.lang.Enum<DateUtil.ParseOption>
      extended by org.shetline.util.DateUtil.ParseOption
All Implemented Interfaces:
Serializable, Comparable<DateUtil.ParseOption>
Enclosing class:
DateUtil

public static enum DateUtil.ParseOption
extends Enum<DateUtil.ParseOption>


Enum Constant Summary
ALLOW_YEAR_ONLY
           
NON_POSITIVE_YEARS
           
PURE_GREGORIAN
           
PURE_JULIAN
           
 
Method Summary
static DateUtil.ParseOption valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DateUtil.ParseOption[] 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

PURE_GREGORIAN

public static final DateUtil.ParseOption PURE_GREGORIAN

PURE_JULIAN

public static final DateUtil.ParseOption PURE_JULIAN

NON_POSITIVE_YEARS

public static final DateUtil.ParseOption NON_POSITIVE_YEARS

ALLOW_YEAR_ONLY

public static final DateUtil.ParseOption ALLOW_YEAR_ONLY
Method Detail

values

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

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

valueOf

public static DateUtil.ParseOption 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

Sky View Café - Java