|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Trace>
gov.nasa.gsfc.spdf.ssc.Trace
public enum Trace
This class represents the different mapped projection trace options 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 | |
|---|---|
B_FIELD_NORTH
A trace from the satellite's location along the intersection north magnetic field line. |
|
B_FIELD_SOUTH
A trace from the satellite's location along the intersection south magnetic field line. |
|
RADIAL
A radial trace from the center of the Earth to the satellite. |
|
| Method Summary | |
|---|---|
static Trace |
fromValue(int value)
Provides the Trace option corresponding to the given integer value. |
java.lang.String |
toString()
Provides a string representation of this Trace option. |
int |
value()
Provides the integer value corresponding to this Trace option. |
static Trace |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Trace[] |
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 Trace RADIAL
public static final Trace B_FIELD_NORTH
public static final Trace B_FIELD_SOUTH
| Method Detail |
|---|
public static Trace[] values()
for (Trace c : Trace.values()) System.out.println(c);
public static Trace 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 Trace fromValue(int value)
value - integer value corresponding to a Trace option
java.lang.IllegalArgumentException - if the given value does not
correspond to any Trace optionpublic java.lang.String toString()
toString in class java.lang.Enum<Trace>
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||