Package org.orekit.files.sp3
Enum DataUsed
- java.lang.Object
-
- java.lang.Enum<DataUsed>
-
- org.orekit.files.sp3.DataUsed
-
- All Implemented Interfaces:
Serializable
,Comparable<DataUsed>
public enum DataUsed extends Enum<DataUsed>
Enumerate for data used.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
Change in 2-receiver/1-satellite carrier phase.CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
Change in 2-receiver/1-satellite code phase.CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
Change in 2-receiver/2-satellite carrier phase.CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
Change in 2-receiver/2-satellite code phase.CHANGE_IN_UNDIFFERENTIATED_CARRIER_PHASE
Change in undifferenciated carrier phase.CHANGE_IN_UNDIFFERENTIATED_CODE_PHASE
Change in undifferenciated code phase.MIXED
Mixed data.ORBIT
Orbit data.SATELLITE_LASER_RANGING
Satellite Laser Ranging.TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
2-receiver/1-satellite carrier phase.TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
2-receiver/1-satellite code phase.TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
2-receiver/2-satellite carrier phase.TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
2-receiver/2-satellite code phase.UNDIFFERENTIATED_CARRIER_PHASE
Undifferenciated carrier phase.UNDIFFERENTIATED_CODE_PHASE
Undifferenciated code phase.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getKey()
Get the key for the data used.static DataUsed
parse(String s, String fileName, char version)
Parse the string to get the data used.static DataUsed
valueOf(String name)
Returns the enum constant of this type with the specified name.static DataUsed[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDIFFERENTIATED_CARRIER_PHASE
public static final DataUsed UNDIFFERENTIATED_CARRIER_PHASE
Undifferenciated carrier phase.
-
CHANGE_IN_UNDIFFERENTIATED_CARRIER_PHASE
public static final DataUsed CHANGE_IN_UNDIFFERENTIATED_CARRIER_PHASE
Change in undifferenciated carrier phase.
-
TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
public static final DataUsed TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
2-receiver/1-satellite carrier phase.
-
CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
public static final DataUsed CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CARRIER_PHASE
Change in 2-receiver/1-satellite carrier phase.
-
TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
public static final DataUsed TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
2-receiver/2-satellite carrier phase.
-
CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
public static final DataUsed CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CARRIER_PHASE
Change in 2-receiver/2-satellite carrier phase.
-
UNDIFFERENTIATED_CODE_PHASE
public static final DataUsed UNDIFFERENTIATED_CODE_PHASE
Undifferenciated code phase.
-
CHANGE_IN_UNDIFFERENTIATED_CODE_PHASE
public static final DataUsed CHANGE_IN_UNDIFFERENTIATED_CODE_PHASE
Change in undifferenciated code phase.
-
TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
public static final DataUsed TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
2-receiver/1-satellite code phase.
-
CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
public static final DataUsed CHANGE_IN_TWO_RECEIVER_ONE_SATELLITE_CODE_PHASE
Change in 2-receiver/1-satellite code phase.
-
TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
public static final DataUsed TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
2-receiver/2-satellite code phase.
-
CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
public static final DataUsed CHANGE_IN_TWO_RECEIVER_TWO_SATELLITE_CODE_PHASE
Change in 2-receiver/2-satellite code phase.
-
SATELLITE_LASER_RANGING
public static final DataUsed SATELLITE_LASER_RANGING
Satellite Laser Ranging.
-
MIXED
public static final DataUsed MIXED
Mixed data.
-
ORBIT
public static final DataUsed ORBIT
Orbit data.
-
-
Method Detail
-
values
public static DataUsed[] 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 (DataUsed c : DataUsed.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DataUsed 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 data used.- Returns:
- key for the data used
-
parse
public static DataUsed parse(String s, String fileName, char version)
Parse the string to get the data used.- Parameters:
s
- string to parsefileName
- file name to generate the error messageversion
- format version- Returns:
- the data used corresponding to the string
- Throws:
IllegalArgumentException
- if the string does not correspond to a data used
-
-