public enum TideSystem extends Enum<TideSystem>
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.
SphericalHarmonicsProvider
Enum Constant and Description |
---|
TIDE_FREE
Constant for tide-free gravity fields.
|
UNKNOWN
Constant for unknown tide system.
|
ZERO_TIDE
Constant for zero-tide gravity fields.
|
Modifier and Type | Method and Description |
---|---|
static TideSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TideSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TideSystem TIDE_FREE
Tide-free fields don't include the permanent tide, so it must be taken care of when computing the solid tides effects.
public static final TideSystem ZERO_TIDE
Zero-tide systems already include the permanent tide, so the solid tides effects must not add them, to avoid it been counted twice.
public static final TideSystem UNKNOWN
public static TideSystem[] values()
for (TideSystem c : TideSystem.values()) System.out.println(c);
public static TideSystem 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 © 2002-2017 CS Systèmes d'information. All rights reserved.