public enum KozaiIzsakMeanElement extends Enum<KozaiIzsakMeanElement> implements Enumeration
KozaiIzsakMeanElements
.Enum Constant and Description |
---|
ARGUMENT_OF_LATITUDE
Mean argument of latitude (radians).
|
ECCENTRIC_ANOMALY
The mean eccentric anomaly (radians).
|
ECCENTRICITY
The mean eccentricity.
|
INCLINATION
Mean inclination (radians).
|
MEAN_ANOMALY
The current mean true anomaly (radians).
|
OSCULATING_RADIUS_OF_APOAPSIS
The osculating apoapsis radius (distance).
|
OSCULATING_RADIUS_OF_PERIAPSIS
The osculating periapsis radius (distance).
|
RADIAL_VELOCITY
Mean rate of change of magnitude of position vector (distance/time).
|
RADIUS
Mean magnitude of position vector (distance).
|
RIGHT_ASCENSION_OF_ASCENDING_NODE
Mean right ascension of the ascending node (radians).
|
SEMILATUS_RECTUM
Mean semi-latus rectum (distance).
|
SEMIMAJOR_AXIS
The mean semi-major axis length.
|
TRUE_ANOMALY
The current mean true anomaly (radians).
|
Modifier and Type | Method and Description |
---|---|
static KozaiIzsakMeanElement |
getDefault()
Get the enum constant that is considered to be the default.
|
static KozaiIzsakMeanElement |
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 KozaiIzsakMeanElement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KozaiIzsakMeanElement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KozaiIzsakMeanElement ARGUMENT_OF_LATITUDE
public static final KozaiIzsakMeanElement INCLINATION
public static final KozaiIzsakMeanElement RADIAL_VELOCITY
public static final KozaiIzsakMeanElement RADIUS
public static final KozaiIzsakMeanElement RIGHT_ASCENSION_OF_ASCENDING_NODE
public static final KozaiIzsakMeanElement SEMILATUS_RECTUM
public static final KozaiIzsakMeanElement ECCENTRIC_ANOMALY
public static final KozaiIzsakMeanElement ECCENTRICITY
public static final KozaiIzsakMeanElement MEAN_ANOMALY
public static final KozaiIzsakMeanElement OSCULATING_RADIUS_OF_APOAPSIS
public static final KozaiIzsakMeanElement OSCULATING_RADIUS_OF_PERIAPSIS
public static final KozaiIzsakMeanElement SEMIMAJOR_AXIS
public static final KozaiIzsakMeanElement TRUE_ANOMALY
public static KozaiIzsakMeanElement[] values()
for (KozaiIzsakMeanElement c : KozaiIzsakMeanElement.values()) System.out.println(c);
public static KozaiIzsakMeanElement 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 KozaiIzsakMeanElement getFromValue(int value)
value
- a numeric value.@Nonnull public static KozaiIzsakMeanElement getDefault()