edu.wisc.ssec.mcidasv.data.adde.sgp4
Enum SGP4unit.Gravconsttype

java.lang.Object
  extended by java.lang.Enum<SGP4unit.Gravconsttype>
      extended by edu.wisc.ssec.mcidasv.data.adde.sgp4.SGP4unit.Gravconsttype
All Implemented Interfaces:
Serializable, Comparable<SGP4unit.Gravconsttype>
Enclosing class:
SGP4unit

public static enum SGP4unit.Gravconsttype
extends Enum<SGP4unit.Gravconsttype>


Enum Constant Summary
wgs72
           
wgs72old
           
wgs84
           
 
Method Summary
static SGP4unit.Gravconsttype valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SGP4unit.Gravconsttype[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

wgs72old

public static final SGP4unit.Gravconsttype wgs72old

wgs72

public static final SGP4unit.Gravconsttype wgs72

wgs84

public static final SGP4unit.Gravconsttype wgs84
Method Detail

values

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

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

valueOf

public static SGP4unit.Gravconsttype valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null