gov.nasa.gsfc.drl.rtstps.core.output.hdf5
Enum Sensor

java.lang.Object
  extended by java.lang.Enum<Sensor>
      extended by gov.nasa.gsfc.drl.rtstps.core.output.hdf5.Sensor
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Sensor>

public enum Sensor
extends java.lang.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

A_DCS

public static final Sensor A_DCS

ATMS

public static final Sensor ATMS

CrIS

public static final Sensor CrIS

CERES

public static final Sensor CERES

SARP

public static final Sensor SARP

SARR

public static final Sensor SARR

OMPS_NP

public static final Sensor OMPS_NP

OMPS_TC

public static final Sensor OMPS_TC

OMPS_LP

public static final Sensor OMPS_LP

OMPS

public static final Sensor OMPS

VIIRS

public static final Sensor VIIRS

SPACECRAFT

public static final Sensor SPACECRAFT
Method Detail

values

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

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

valueOf

public static Sensor 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()
Return a String representation of the enumeration, but swap an '_' with '-'.

Overrides:
toString in class java.lang.Enum<Sensor>