Enum CombinationType
- java.lang.Object
-
- java.lang.Enum<CombinationType>
-
- org.orekit.estimation.measurements.gnss.CombinationType
-
- All Implemented Interfaces:
Serializable,Comparable<CombinationType>
public enum CombinationType extends Enum<CombinationType>
Enumerate for combination of measurements types.- Since:
- 10.1
- Author:
- Bryan Cazabonne
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GEOMETRY_FREEGeometry-free combination.GRAPHICGRoup And Phase Ionospheric Calibration (GRAPHIC) combination.IONO_FREEIonosphere-free combination.MELBOURNE_WUBBENAMelbourne-Wübbena combination.NARROW_LANENarrow-lane combination.PHASE_MINUS_CODEPhase minus code combination.WIDE_LANEWide-lane combination.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Get the name of the combination of measurements.static CombinationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CombinationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PHASE_MINUS_CODE
public static final CombinationType PHASE_MINUS_CODE
Phase minus code combination.
-
GRAPHIC
public static final CombinationType GRAPHIC
GRoup And Phase Ionospheric Calibration (GRAPHIC) combination.
-
GEOMETRY_FREE
public static final CombinationType GEOMETRY_FREE
Geometry-free combination.
-
IONO_FREE
public static final CombinationType IONO_FREE
Ionosphere-free combination.
-
NARROW_LANE
public static final CombinationType NARROW_LANE
Narrow-lane combination.
-
WIDE_LANE
public static final CombinationType WIDE_LANE
Wide-lane combination.
-
MELBOURNE_WUBBENA
public static final CombinationType MELBOURNE_WUBBENA
Melbourne-Wübbena combination.
-
-
Method Detail
-
values
public static CombinationType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CombinationType c : CombinationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CombinationType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
getName
public String getName()
Get the name of the combination of measurements.- Returns:
- the name
-
-