public enum EquinoctialElement extends Enum<EquinoctialElement> implements Enumeration
EquinoctialElements.| Enum Constant and Description | 
|---|
ECCENTRICITY_COSINE_LONGITUDE_OF_PERIAPSIS
Eccentricity * Cos(Argument Of Periapsis +  
Direction (get) * Right Ascension Of Ascending Node) | 
ECCENTRICITY_SINE_LONGITUDE_OF_PERIAPSIS
Eccentricity * Sin(Argument Of Periapsis +  
Direction (get) * Right Ascension Of Ascending Node) | 
INCLINATION_AND_RIGHT_ASCENSION_COSINE_PARAMETER
Sin(Inclination) * Cos(Right Ascension Of Ascending Node) / (1 + Cos(Inclination) ) 
 | 
INCLINATION_AND_RIGHT_ASCENSION_SINE_PARAMETER
Sin(Inclination) * Sin(Right Ascension Of Ascending Node) / (1 + Cos(Inclination) ) 
 | 
MEAN_LONGITUDE
Mean Anomaly + Argument Of Periapsis +  
Direction (get) * Right Ascension Of Ascending Node (radians) | 
SEMIMAJOR_AXIS
The semimajor axis (distance). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static EquinoctialElement | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static EquinoctialElement | 
getFromValue(int value)
Get the enum constant that is associated with the given numeric value. 
 | 
int | 
getValue()
Get the numeric value associated with this enum constant. 
 | 
static EquinoctialElement | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static EquinoctialElement[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final EquinoctialElement ECCENTRICITY_COSINE_LONGITUDE_OF_PERIAPSIS
Direction (get) * Right Ascension Of Ascending Node)public static final EquinoctialElement ECCENTRICITY_SINE_LONGITUDE_OF_PERIAPSIS
Direction (get) * Right Ascension Of Ascending Node)public static final EquinoctialElement INCLINATION_AND_RIGHT_ASCENSION_COSINE_PARAMETER
public static final EquinoctialElement INCLINATION_AND_RIGHT_ASCENSION_SINE_PARAMETER
public static final EquinoctialElement MEAN_LONGITUDE
Direction (get) * Right Ascension Of Ascending Node (radians)public static final EquinoctialElement SEMIMAJOR_AXIS
public static EquinoctialElement[] values()
for (EquinoctialElement c : EquinoctialElement.values()) System.out.println(c);
public static EquinoctialElement valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic int getValue()
getValue in interface Enumeration@Nonnull public static EquinoctialElement getFromValue(int value)
value - a numeric value.@Nonnull public static EquinoctialElement getDefault()