org.orekit.files.general
Enum OrbitFile.TimeSystem

java.lang.Object
  extended by java.lang.Enum<OrbitFile.TimeSystem>
      extended by org.orekit.files.general.OrbitFile.TimeSystem
All Implemented Interfaces:
Serializable, Comparable<OrbitFile.TimeSystem>
Enclosing interface:
OrbitFile

public static enum OrbitFile.TimeSystem
extends Enum<OrbitFile.TimeSystem>

Time system used throughout this orbit file.


Enum Constant Summary
GAL
          GALILEO.
GLO
          GLONASS.
GPS
          Global Positioning System.
QZS
          Quasi-Zenith System.
TAI
          International Atomic Time.
UTC
          Coordinated Universal Time.
 
Method Summary
static OrbitFile.TimeSystem valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OrbitFile.TimeSystem[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

GPS

public static final OrbitFile.TimeSystem GPS
Global Positioning System.


GLO

public static final OrbitFile.TimeSystem GLO
GLONASS.


GAL

public static final OrbitFile.TimeSystem GAL
GALILEO.


TAI

public static final OrbitFile.TimeSystem TAI
International Atomic Time.


UTC

public static final OrbitFile.TimeSystem UTC
Coordinated Universal Time.


QZS

public static final OrbitFile.TimeSystem QZS
Quasi-Zenith System.

Method Detail

values

public static OrbitFile.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 (OrbitFile.TimeSystem c : OrbitFile.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 OrbitFile.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 name
NullPointerException - if the argument is null


Copyright © 2017 CNES. All Rights Reserved.