Package org.orekit.files.rinex.clock
Enum RinexClock.ClockDataType
- java.lang.Object
-
- java.lang.Enum<RinexClock.ClockDataType>
-
- org.orekit.files.rinex.clock.RinexClock.ClockDataType
-
- All Implemented Interfaces:
Serializable
,Comparable<RinexClock.ClockDataType>
- Enclosing class:
- RinexClock
public static enum RinexClock.ClockDataType extends Enum<RinexClock.ClockDataType>
Clock data type. In case of a DR type, clock data are in the sense of clock value after discontinuity minus prior. In other cases, clock data are in the sense of reported station/satellite clock minus reference clock value.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AR
Data analysis for receiver clocks.AS
Data analysis for satellite clocks.CR
Calibration measurement for a single GPS receiver.DR
Discontinuity measurements for a single GPS receiver.MS
Monitor measurements for the broadcast satellite clocks.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
Get the key for the system.static RinexClock.ClockDataType
parseClockDataType(String s)
Parse a string to get the time system.static RinexClock.ClockDataType
valueOf(String name)
Returns the enum constant of this type with the specified name.static RinexClock.ClockDataType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AR
public static final RinexClock.ClockDataType AR
Data analysis for receiver clocks. Clock Data are
-
AS
public static final RinexClock.ClockDataType AS
Data analysis for satellite clocks.
-
CR
public static final RinexClock.ClockDataType CR
Calibration measurement for a single GPS receiver.
-
DR
public static final RinexClock.ClockDataType DR
Discontinuity measurements for a single GPS receiver.
-
MS
public static final RinexClock.ClockDataType MS
Monitor measurements for the broadcast satellite clocks.
-
-
Method Detail
-
values
public static RinexClock.ClockDataType[] 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 (RinexClock.ClockDataType c : RinexClock.ClockDataType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RinexClock.ClockDataType 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
-
getKey
public String getKey()
Get the key for the system.- Returns:
- key for the system
-
parseClockDataType
public static RinexClock.ClockDataType parseClockDataType(String s) throws OrekitIllegalArgumentException
Parse a string to get the time system.The string must be the time system.
- Parameters:
s
- string to parse- Returns:
- the time system
- Throws:
OrekitIllegalArgumentException
- if the string does not correspond to a time system key
-
-