public enum AerodynamicCoefficientType extends Enum<AerodynamicCoefficientType>
| Enum Constant and Description |
|---|
ALTITUDE
Coefficients as a function of altitude.
|
AOA
Coefficients as a function of angle of attack.
|
CONSTANT
Constant coefficients.
|
MACH
Coefficients as a function of Mach number.
|
MACH_AND_AOA
Coefficients as a function of Mach number and angle of attack.
|
| Modifier and Type | Method and Description |
|---|---|
static AerodynamicCoefficientType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AerodynamicCoefficientType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AerodynamicCoefficientType CONSTANT
public static final AerodynamicCoefficientType ALTITUDE
public static final AerodynamicCoefficientType AOA
public static final AerodynamicCoefficientType MACH
public static final AerodynamicCoefficientType MACH_AND_AOA
public static AerodynamicCoefficientType[] values()
for (AerodynamicCoefficientType c : AerodynamicCoefficientType.values()) System.out.println(c);
public static AerodynamicCoefficientType 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 nullCopyright © 2025 CNES. All rights reserved.