public enum StkEphemerisFileVersion extends Enum<StkEphemerisFileVersion> implements Enumeration
Enum Constant and Description |
---|
UNKNOWN
Version which corresponds to an unrecognized version stamp in an STK ephemeris file.
|
V100
Version 10.0 format which corresponds to a stk.v.10.0 version stamp in an STK ephemeris file.
|
V110
Version 11.0 format which corresponds to a stk.v.11.0 version stamp in an STK ephemeris file.
|
V120
Version 12.0 format which corresponds to a stk.v.12.0 version stamp in an STK ephemeris file.
|
V410
Version 4.1.0 format which corresponds to a stk.v.4.0 version stamp in an STK ephemeris file.
|
V42
Version 4.2 format which corresponds to a stk.v.4.2 version stamp in an STK ephemeris file.
|
V43
Version 4.3 format which corresponds to a stk.v.4.3 version stamp in an STK ephemeris file.
|
V62
Version 6.2 format which corresponds to a stk.v.6.2 version stamp in an STK ephemeris file.
|
V80
Version 8.0 format which corresponds to a stk.v.8.0 version stamp in an STK ephemeris file.
|
V90
Version 9.0 format which corresponds to a stk.v.9.0 version stamp in an STK ephemeris file.
|
Modifier and Type | Method and Description |
---|---|
static StkEphemerisFileVersion |
getDefault()
Get the enum constant that is considered to be the default.
|
static StkEphemerisFileVersion |
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 StkEphemerisFileVersion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StkEphemerisFileVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StkEphemerisFileVersion UNKNOWN
public static final StkEphemerisFileVersion V410
public static final StkEphemerisFileVersion V42
public static final StkEphemerisFileVersion V43
public static final StkEphemerisFileVersion V62
public static final StkEphemerisFileVersion V80
public static final StkEphemerisFileVersion V90
public static final StkEphemerisFileVersion V100
public static final StkEphemerisFileVersion V110
public static final StkEphemerisFileVersion V120
public static StkEphemerisFileVersion[] values()
for (StkEphemerisFileVersion c : StkEphemerisFileVersion.values()) System.out.println(c);
public static StkEphemerisFileVersion 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 StkEphemerisFileVersion getFromValue(int value)
value
- a numeric value.@Nonnull public static StkEphemerisFileVersion getDefault()