public static enum StkEphemerisFile.StkTimeFormat extends Enum<StkEphemerisFile.StkTimeFormat> implements Enumeration
Enum Constant and Description |
---|
EP_SEC
Epoch seconds (EpSec) describes the time at which an event occurred with a two-step process.
|
GPS_G
GlobalPositioningSystemTime (get ) mapped onto the Gregorian calendar. |
TAI_G
InternationalAtomicTime (get ) mapped onto the Gregorian calendar. |
TDT_G
TerrestrialTime (get ) mapped onto the Gregorian calendar. |
UTC_G
CoordinatedUniversalTime (get ) mapped onto the Gregorian calendar. |
Modifier and Type | Method and Description |
---|---|
static StkEphemerisFile.StkTimeFormat |
getDefault()
Get the enum constant that is considered to be the default.
|
static StkEphemerisFile.StkTimeFormat |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static StkEphemerisFile.StkTimeFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StkEphemerisFile.StkTimeFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StkEphemerisFile.StkTimeFormat EP_SEC
public static final StkEphemerisFile.StkTimeFormat UTC_G
CoordinatedUniversalTime
(get
) mapped onto the Gregorian calendar.public static final StkEphemerisFile.StkTimeFormat GPS_G
GlobalPositioningSystemTime
(get
) mapped onto the Gregorian calendar.public static final StkEphemerisFile.StkTimeFormat TAI_G
InternationalAtomicTime
(get
) mapped onto the Gregorian calendar.public static final StkEphemerisFile.StkTimeFormat TDT_G
TerrestrialTime
(get
) mapped onto the Gregorian calendar.
Terrestrial Time is formerly known as Terrestrial Dynamical Time. STK continues to use the keyword TDTG to refer to Terrestrial Time mapped onto the Gregorian calendar.
public static StkEphemerisFile.StkTimeFormat[] values()
for (StkEphemerisFile.StkTimeFormat c : StkEphemerisFile.StkTimeFormat.values()) System.out.println(c);
public static StkEphemerisFile.StkTimeFormat 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static StkEphemerisFile.StkTimeFormat getFromValue(int value)
value
- a numeric value.@Nonnull public static StkEphemerisFile.StkTimeFormat getDefault()