public enum TimeSystem extends Enum<TimeSystem>
Enum Constant and Description |
---|
GMST
Greenwich Mean Sidereal Time.
|
GPS
Global Positioning System.
|
MET
Mission Elapsed Time.
|
MRT
Mission Relative Time.
|
SCLK
Spacecraft Clock.
|
TAI
International Atomic Time.
|
TCB
Barycentric Coordinate Time.
|
TCG
Geocentric Coordinate Time.
|
TDB
Barycentric Dynamical Time.
|
TT
Terrestrial Time.
|
UT1
Universal Time.
|
UTC
Universal Coordinated Time.
|
Modifier and Type | Method and Description |
---|---|
abstract TimeConverter |
getConverter(ContextBinding context)
Get associated
TimeConverter . |
static TimeSystem |
parse(String value)
Parse a value from a key=value entry.
|
static TimeSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSystem GMST
public static final TimeSystem GPS
public static final TimeSystem MET
public static final TimeSystem MRT
public static final TimeSystem SCLK
public static final TimeSystem TAI
public static final TimeSystem TCB
public static final TimeSystem TDB
public static final TimeSystem TCG
public static final TimeSystem TT
public static final TimeSystem UT1
public static final TimeSystem UTC
public static TimeSystem[] values()
for (TimeSystem c : TimeSystem.values()) System.out.println(c);
public static TimeSystem valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic abstract TimeConverter getConverter(ContextBinding context)
TimeConverter
.context
- context bindingpublic static TimeSystem parse(String value)
value
- value to parseCopyright © 2002-2022 CS GROUP. All rights reserved.