public enum StateVectorKey extends Enum<StateVectorKey>
ODM state vector container entries.| Enum Constant and Description |
|---|
COMMENT
Comment entry.
|
EPOCH
Epoch of state vector and optional Keplerian elements.
|
X
Position vector X-component.
|
X_DDOT
Acceleration vector X-component.
|
X_DOT
Velocity vector X-component.
|
Y
Position vector Y-component.
|
Y_DDOT
Acceleration vector Y-component.
|
Y_DOT
Velocity vector Y-component.
|
Z
Position vector Z-component.
|
Z_DDOT
Acceleration vector Z-component.
|
Z_DOT
Velocity vector Z-component.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
process(ParseToken token,
ContextBinding context,
StateVector container)
Process one token.
|
static StateVectorKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateVectorKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateVectorKey COMMENT
public static final StateVectorKey EPOCH
public static final StateVectorKey X
public static final StateVectorKey Y
public static final StateVectorKey Z
public static final StateVectorKey X_DOT
public static final StateVectorKey Y_DOT
public static final StateVectorKey Z_DOT
public static final StateVectorKey X_DDOT
public static final StateVectorKey Y_DDOT
public static final StateVectorKey Z_DDOT
public static StateVectorKey[] values()
for (StateVectorKey c : StateVectorKey.values()) System.out.println(c);
public static StateVectorKey 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 boolean process(ParseToken token, ContextBinding context, StateVector container)
token - token to processcontext - context bindingcontainer - container to fillCopyright © 2002-2023 CS GROUP. All rights reserved.