Package org.orekit.files.rinex.section
Enum CommonLabel
- java.lang.Object
-
- java.lang.Enum<CommonLabel>
-
- org.orekit.files.rinex.section.CommonLabel
-
- All Implemented Interfaces:
Serializable,Comparable<CommonLabel>,Label
public enum CommonLabel extends Enum<CommonLabel> implements Label
Label for Rinex files.- Since:
- 14.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMMENTComments.DOIDOI.ENDEnd of header.LEAP_SECONDSLeap seconds separating UTC and TAI.LICENSELlicense.PROGRAMGenerating program and emiting agency.STATION_INFORMATIONStation information.SYS_DCBS_APPLIEDDifferential code bias corrections.SYS_NB_TYPES_OF_OBSERVNumber and types of observations.SYS_PCVS_APPLIEDPhase center variations corrections.VERSIONVersion, file type and satellite system.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetLabel()Get the first label.booleanmatches(String label)Check if label matches.static CommonLabelvalueOf(String name)Returns the enum constant of this type with the specified name.static CommonLabel[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
VERSION
public static final CommonLabel VERSION
Version, file type and satellite system.
-
PROGRAM
public static final CommonLabel PROGRAM
Generating program and emiting agency.
-
COMMENT
public static final CommonLabel COMMENT
Comments.
-
DOI
public static final CommonLabel DOI
DOI.
-
LICENSE
public static final CommonLabel LICENSE
Llicense.
-
STATION_INFORMATION
public static final CommonLabel STATION_INFORMATION
Station information.
-
SYS_NB_TYPES_OF_OBSERV
public static final CommonLabel SYS_NB_TYPES_OF_OBSERV
Number and types of observations.
-
SYS_DCBS_APPLIED
public static final CommonLabel SYS_DCBS_APPLIED
Differential code bias corrections.
-
SYS_PCVS_APPLIED
public static final CommonLabel SYS_PCVS_APPLIED
Phase center variations corrections.
-
LEAP_SECONDS
public static final CommonLabel LEAP_SECONDS
Leap seconds separating UTC and TAI.
-
END
public static final CommonLabel END
End of header.
-
-
Method Detail
-
values
public static CommonLabel[] 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 (CommonLabel c : CommonLabel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonLabel 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
-
matches
public boolean matches(String label)
Check if label matches.
-
-