Enum Class TideSystem
- All Implemented Interfaces:
Serializable,Comparable<TideSystem>,Constable
Enumerate for tie systems.
Tide-systems are used to identify if the permanent tide is already present in the gravity field or if it should be handled when computing the solid tides force model.
- Since:
- 6.0
- 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 Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TideSystemReturns the enum constant of this class with the specified name.static TideSystem[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TIDE_FREE
Constant for tide-free gravity fields.Tide-free fields don't include the permanent tide, so it must be taken care of when computing the solid tides effects.
-
ZERO_TIDE
Constant for zero-tide gravity fields.Zero-tide systems already include the permanent tide, so the solid tides effects must not add them, to avoid it been counted twice.
-
UNKNOWN
Constant for unknown tide system.
-
-
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
-