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