net.ivoa.xml.stc.stc_v1_30
Enum TimeScaleType

java.lang.Object
  extended by java.lang.Enum<TimeScaleType>
      extended by net.ivoa.xml.stc.stc_v1_30.TimeScaleType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TimeScaleType>

public enum TimeScaleType
extends java.lang.Enum<TimeScaleType>

Java class for timeScaleType.

The following schema fragment specifies the expected content contained within this class.

 <simpleType name="timeScaleType">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="TT"/>
     <enumeration value="TDT"/>
     <enumeration value="ET"/>
     <enumeration value="TDB"/>
     <enumeration value="TEB"/>
     <enumeration value="TCG"/>
     <enumeration value="TCB"/>
     <enumeration value="TAI"/>
     <enumeration value="IAT"/>
     <enumeration value="UTC"/>
     <enumeration value="GPS"/>
     <enumeration value="LST"/>
     <enumeration value="GMST"/>
     <enumeration value="LOCAL"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
ET
          Ephemeris Time; predecessor of, and continuous with, TT
GMST
          Greenwich Mean Siderial Time; only for ground-based observations; note that the second is shorter
GPS
          Global Positioning System's time scale; runs 19 s behind TAI, 51.184 s behind TT.
IAT
          Synonym for TAI
LOCAL
          Only to be used for simulations in conjunction with a relocatable spatial frame
LST
          Local Siderial Time; only for ground-based observations; note that the second is shorter
TAI
          International Atomic Time; runs 32.184 s behind TT
TCB
          Barycentric Coordinate Time; runs slower than TDB but is consistent with physical constants
TCG
          Terrestrial Coordinate Time
TDB
          Barycentric Dynamic Time:the independent variable in planetay ephemerides; time at the solar system barycenter synchronous with TT on an annual basis; sometimes called TEB
TDT
          Obsolete synonym for TT
TEB
          Barycentric Ephemeris Time: time at the solar system barycenter synchronous with TT on an annual basis; a deprecated synonym of TDB.
TT
          Terrestrial Time; the basis for ephemerides
UTC
          Coordinated Universal Time; currently (2006) runs 33 leapseconds behind TAI
 
Method Summary
static TimeScaleType fromValue(java.lang.String v)
           
 java.lang.String value()
           
static TimeScaleType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TimeScaleType[] 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

TT

public static final TimeScaleType TT
Terrestrial Time; the basis for ephemerides


TDT

public static final TimeScaleType TDT
Obsolete synonym for TT


ET

public static final TimeScaleType ET
Ephemeris Time; predecessor of, and continuous with, TT


TDB

public static final TimeScaleType TDB
Barycentric Dynamic Time:the independent variable in planetay ephemerides; time at the solar system barycenter synchronous with TT on an annual basis; sometimes called TEB


TEB

public static final TimeScaleType TEB
Barycentric Ephemeris Time: time at the solar system barycenter synchronous with TT on an annual basis; a deprecated synonym of TDB.


TCG

public static final TimeScaleType TCG
Terrestrial Coordinate Time


TCB

public static final TimeScaleType TCB
Barycentric Coordinate Time; runs slower than TDB but is consistent with physical constants


TAI

public static final TimeScaleType TAI
International Atomic Time; runs 32.184 s behind TT


IAT

public static final TimeScaleType IAT
Synonym for TAI


UTC

public static final TimeScaleType UTC
Coordinated Universal Time; currently (2006) runs 33 leapseconds behind TAI


GPS

public static final TimeScaleType GPS
Global Positioning System's time scale; runs 19 s behind TAI, 51.184 s behind TT.


LST

public static final TimeScaleType LST
Local Siderial Time; only for ground-based observations; note that the second is shorter


GMST

public static final TimeScaleType GMST
Greenwich Mean Siderial Time; only for ground-based observations; note that the second is shorter


LOCAL

public static final TimeScaleType LOCAL
Only to be used for simulations in conjunction with a relocatable spatial frame

Method Detail

values

public static TimeScaleType[] 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 (TimeScaleType c : TimeScaleType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static TimeScaleType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

value

public java.lang.String value()

fromValue

public static TimeScaleType fromValue(java.lang.String v)


Copyright © 2011 VAMDC. All Rights Reserved.