Package org.orekit.models.earth.weather
Enum Class SeasonalModelType
- All Implemented Interfaces:
Serializable,Comparable<SeasonalModelType>,Constable
Type of seasonal model used in Global Pressure Temperature models.
- Since:
- 12.1
- Author:
- Luc Maisonobe
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionah coefficient model.aw coefficient model.Temperature gradient model.Hydrostatic East gradient coefficient model.Wet East gradient coefficient model.Hydrostatic North gradient coefficient model.Wet North gradient coefficient model.Water vapor decrease factor model.Pressure model.Specific humidity model.Temperature model.Mean temperature weighted with water vapor pressure model. -
Method Summary
Modifier and TypeMethodDescriptionstatic SeasonalModelTypeParse a field to get the type.static SeasonalModelTypeReturns the enum constant of this class with the specified name.static SeasonalModelType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PRESSURE
Pressure model. -
TEMPERATURE
Temperature model. -
QV
Specific humidity model. -
DT
Temperature gradient model. -
AH
ah coefficient model. -
AW
aw coefficient model. -
LAMBDA
Water vapor decrease factor model. -
TM
Mean temperature weighted with water vapor pressure model. -
GN_H
Hydrostatic North gradient coefficient model. -
GE_H
Hydrostatic East gradient coefficient model. -
GN_W
Wet North gradient coefficient model. -
GE_W
Wet East gradient coefficient model.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
parseType
Parse a field to get the type.- Parameters:
field- field to parse- Returns:
- the type corresponding to the field
- Throws:
IllegalArgumentException- if the field does not correspond to a type
-