gov.nasa.gsfc.drl.rtstps.core.output.hdf5
Enum TypeID
java.lang.Object
java.lang.Enum<TypeID>
gov.nasa.gsfc.drl.rtstps.core.output.hdf5.TypeID
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TypeID>
public enum TypeID
- extends java.lang.Enum<TypeID>
Specified by the JPSS/NPOESS documentation. In some cases any '-' in the name
is replaced with a '-' when it is converted to a String.
Method Summary |
java.lang.String |
toString()
|
static TypeID |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static TypeID[] |
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 |
HSKDWELL
public static final TypeID HSKDWELL
SSMDWELL
public static final TypeID SSMDWELL
IMDWELL
public static final TypeID IMDWELL
DIAG_SCI
public static final TypeID DIAG_SCI
SCIENCE
public static final TypeID SCIENCE
CALIBRATION
public static final TypeID CALIBRATION
DIAGEXPONE
public static final TypeID DIAGEXPONE
DIAGEXPTWO
public static final TypeID DIAGEXPTWO
DIA_CAL
public static final TypeID DIA_CAL
DWELL
public static final TypeID DWELL
DUMP
public static final TypeID DUMP
FSW_BOOTUP
public static final TypeID FSW_BOOTUP
DIAGNOSTIC
public static final TypeID DIAGNOSTIC
DIAGTELEMETRY
public static final TypeID DIAGTELEMETRY
TELEMETRY
public static final TypeID TELEMETRY
DIARY
public static final TypeID DIARY
values
public static TypeID[] 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 (TypeID c : TypeID.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TypeID 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
java.lang.NullPointerException
- if the argument is null
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Enum<TypeID>