public enum EdalDatePrecision extends java.lang.Enum<EdalDatePrecision>
Enum of all possible precisions of EdalDate.| Enum Constant and Description |
|---|
CENTURY |
DAY |
DECADE |
HOUR |
MILLISECOND |
MINUTE |
MONTH |
SECOND |
YEAR |
| Modifier and Type | Method and Description |
|---|---|
static EdalDatePrecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EdalDatePrecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EdalDatePrecision CENTURY
public static final EdalDatePrecision DECADE
public static final EdalDatePrecision YEAR
public static final EdalDatePrecision MONTH
public static final EdalDatePrecision DAY
public static final EdalDatePrecision HOUR
public static final EdalDatePrecision MINUTE
public static final EdalDatePrecision SECOND
public static final EdalDatePrecision MILLISECOND
public static EdalDatePrecision[] values()
for (EdalDatePrecision c : EdalDatePrecision.values()) System.out.println(c);
public static EdalDatePrecision 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 null