public enum DelaunayElement extends Enum<DelaunayElement> implements Enumeration
DelaunayElements.| Enum Constant and Description | 
|---|
ANGULAR_MOMENTUM
The angular momentum (distance squared per time). 
 | 
ANGULAR_MOMENTUM_ALONG_Z
The Z Component of angular momentum (distance squared per time). 
 | 
ARGUMENT_OF_PERIAPSIS
The argument of periapsis (radians). 
 | 
MEAN_ANOMALY
The mean anomaly (radians). 
 | 
RIGHT_ASCENSION_OF_ASCENDING_NODE
The right ascension of ascending node (radians). 
 | 
SQUARE_ROOT_GRAVITY_SEMIMAJOR_AXIS
The square root of the product of gravitational parameter and semimajor axis (distance squared per time). 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static DelaunayElement | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static DelaunayElement | 
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 DelaunayElement | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static DelaunayElement[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final DelaunayElement ANGULAR_MOMENTUM
public static final DelaunayElement ANGULAR_MOMENTUM_ALONG_Z
public static final DelaunayElement ARGUMENT_OF_PERIAPSIS
public static final DelaunayElement MEAN_ANOMALY
public static final DelaunayElement RIGHT_ASCENSION_OF_ASCENDING_NODE
public static final DelaunayElement SQUARE_ROOT_GRAVITY_SEMIMAJOR_AXIS
public static DelaunayElement[] values()
for (DelaunayElement c : DelaunayElement.values()) System.out.println(c);
public static DelaunayElement 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 DelaunayElement getFromValue(int value)
value - a numeric value.@Nonnull public static DelaunayElement getDefault()