|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Sensor>
gov.nasa.gsfc.drl.rtstps.core.output.hdf5.Sensor
public enum Sensor
A Sensor is defined by the JPSS/NPOESS documentation. The only difference here is switching the '-' for a '_' in some entries which are fixed up in the toString method. The following sensors are defined:
A_DCS,
ATMS,
CrIS,
CERES,
SARP,
SARR,
OMPS_NP,
OMPS_TC,
OMPS_LP,
OMPS,
VIIRS,
SPACECRAFT
Enum Constant Summary | |
---|---|
A_DCS
|
|
ATMS
|
|
CERES
|
|
CrIS
|
|
OMPS
|
|
OMPS_LP
|
|
OMPS_NP
|
|
OMPS_TC
|
|
SARP
|
|
SARR
|
|
SPACECRAFT
|
|
VIIRS
|
Method Summary | |
---|---|
java.lang.String |
toString()
Return a String representation of the enumeration, but swap an '_' with '-'. |
static Sensor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Sensor[] |
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 Sensor A_DCS
public static final Sensor ATMS
public static final Sensor CrIS
public static final Sensor CERES
public static final Sensor SARP
public static final Sensor SARR
public static final Sensor OMPS_NP
public static final Sensor OMPS_TC
public static final Sensor OMPS_LP
public static final Sensor OMPS
public static final Sensor VIIRS
public static final Sensor SPACECRAFT
Method Detail |
---|
public static Sensor[] values()
for (Sensor c : Sensor.values()) System.out.println(c);
public static Sensor 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 java.lang.String toString()
toString
in class java.lang.Enum<Sensor>
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |