|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<DateFormat>
gov.nasa.gsfc.spdf.ssc.DateFormat
public enum DateFormat
This class represents the date formats supported by SSC.
Note: The integer values for this enumeration cannot be arbitrarily assigned. They must match the values expected by other parts of the SSC software.
| Enum Constant Summary | |
|---|---|
YY_MM_DD
A date format of yy/mm/dd. |
|
YY_MMM_DD
A date format of yy-Mmm-dd. |
|
YY_MMM_DD_2
A date format of yy-MMM-dd. |
|
YYYY_DDD
A date format of yyyy ddd. |
|
| Method Summary | |
|---|---|
static DateFormat |
fromValue(int value)
Provides the date format corresponding to the given integer value. |
java.lang.String |
toString()
Provides a string representation of this date format. |
int |
value()
Provides the integer value corresponding to this date format. |
static DateFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static DateFormat[] |
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, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final DateFormat YYYY_DDD
public static final DateFormat YY_MM_DD
public static final DateFormat YY_MMM_DD
public static final DateFormat YY_MMM_DD_2
| Method Detail |
|---|
public static DateFormat[] values()
for (DateFormat c : DateFormat.values()) System.out.println(c);
public static DateFormat 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 name
java.lang.NullPointerException - if the argument is nullpublic int value()
public static DateFormat fromValue(int value)
value - integer value corresponding to a date format
java.lang.IllegalArgumentException - if the given value does not
correspond to any date formatpublic java.lang.String toString()
toString in class java.lang.Enum<DateFormat>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||