public enum SpacecraftParametersKey extends Enum<SpacecraftParametersKey>
ODM spacecraft parameters entries.| Enum Constant and Description |
|---|
COMMENT
Comment entry.
|
DRAG_AREA
Drag area.
|
DRAG_COEFF
Drag coefficient.
|
MASS
Spacecraft mass.
|
SOLAR_RAD_AREA
Solar radiation pressure area.
|
SOLAR_RAD_COEFF
Solar radiation pressure coefficient.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
process(ParseToken token,
ContextBinding context,
SpacecraftParameters container)
Process one token.
|
static SpacecraftParametersKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpacecraftParametersKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpacecraftParametersKey COMMENT
public static final SpacecraftParametersKey MASS
public static final SpacecraftParametersKey SOLAR_RAD_AREA
public static final SpacecraftParametersKey SOLAR_RAD_COEFF
public static final SpacecraftParametersKey DRAG_AREA
public static final SpacecraftParametersKey DRAG_COEFF
public static SpacecraftParametersKey[] values()
for (SpacecraftParametersKey c : SpacecraftParametersKey.values()) System.out.println(c);
public static SpacecraftParametersKey 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, SpacecraftParameters container)
token - token to processcontext - context bindingcontainer - container to fillCopyright © 2002-2021 CS GROUP. All rights reserved.