Package org.orekit.files.sp3
Enum SP3File.TimeSystem
- java.lang.Object
-
- java.lang.Enum<SP3File.TimeSystem>
-
- org.orekit.files.sp3.SP3File.TimeSystem
-
- All Implemented Interfaces:
Serializable
,Comparable<SP3File.TimeSystem>
- Enclosing class:
- SP3File
public static enum SP3File.TimeSystem extends Enum<SP3File.TimeSystem>
Time system used throughout this SP3 file.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SP3File.TimeSystem
valueOf(String name)
Returns the enum constant of this type with the specified name.static SP3File.TimeSystem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GPS
public static final SP3File.TimeSystem GPS
Global Positioning System.
-
GLO
public static final SP3File.TimeSystem GLO
GLONASS.
-
GAL
public static final SP3File.TimeSystem GAL
GALILEO.
-
TAI
public static final SP3File.TimeSystem TAI
International Atomic Time.
-
UTC
public static final SP3File.TimeSystem UTC
Coordinated Universal Time.
-
QZS
public static final SP3File.TimeSystem QZS
Quasi-Zenith System.
-
-
Method Detail
-
values
public static SP3File.TimeSystem[] 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 (SP3File.TimeSystem c : SP3File.TimeSystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SP3File.TimeSystem 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
-
-