public enum SimpleAscentPropagatorBurnoutVelocityFrame extends Enum<SimpleAscentPropagatorBurnoutVelocityFrame> implements Enumeration
CentralBody-relative frame used to specify the burnout velocity in SimpleAscentPropagator.
 The appropriate burnout velocity properties will need to be set.
| Enum Constant and Description | 
|---|
FIXED_FRAME
Use the  
CentralBody's fixed frame for specifying the burnout velocity vector. | 
INERTIAL_FRAME
Use the  
CentralBody's inertial frame for specifying the burnout velocity vector. | 
| Modifier and Type | Method and Description | 
|---|---|
static SimpleAscentPropagatorBurnoutVelocityFrame | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static SimpleAscentPropagatorBurnoutVelocityFrame | 
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 SimpleAscentPropagatorBurnoutVelocityFrame | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static SimpleAscentPropagatorBurnoutVelocityFrame[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final SimpleAscentPropagatorBurnoutVelocityFrame FIXED_FRAME
CentralBody's fixed frame for specifying the burnout velocity vector.public static final SimpleAscentPropagatorBurnoutVelocityFrame INERTIAL_FRAME
CentralBody's inertial frame for specifying the burnout velocity vector.public static SimpleAscentPropagatorBurnoutVelocityFrame[] values()
for (SimpleAscentPropagatorBurnoutVelocityFrame c : SimpleAscentPropagatorBurnoutVelocityFrame.values()) System.out.println(c);
public static SimpleAscentPropagatorBurnoutVelocityFrame 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 SimpleAscentPropagatorBurnoutVelocityFrame getFromValue(int value)
value - a numeric value.@Nonnull public static SimpleAscentPropagatorBurnoutVelocityFrame getDefault()