Enum OcmDataSubStructureKey
- java.lang.Object
-
- java.lang.Enum<OcmDataSubStructureKey>
-
- org.orekit.files.ccsds.ndm.odm.ocm.OcmDataSubStructureKey
-
- All Implemented Interfaces:
Serializable
,Comparable<OcmDataSubStructureKey>
public enum OcmDataSubStructureKey extends Enum<OcmDataSubStructureKey>
Keywords for OCM data sub-structure.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description cov
Covariance time history section.COV
Covariance time history section.man
Maneuvers section.MAN
Maneuvers section.od
Orbit determination section.OD
Orbit determination section.pert
Perturbations parameters section.PERT
Perturbations parameters section.phys
Physical properties section.PHYS
Physical properties section.traj
Trajectory state time history section.TRAJ
Trajectory state time history section.user
User-defined parameters section.USER
User-defined parameters section.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, OcmParser parser)
Process one token.static OcmDataSubStructureKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static OcmDataSubStructureKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TRAJ
public static final OcmDataSubStructureKey TRAJ
Trajectory state time history section.
-
traj
public static final OcmDataSubStructureKey traj
Trajectory state time history section.
-
PHYS
public static final OcmDataSubStructureKey PHYS
Physical properties section.
-
phys
public static final OcmDataSubStructureKey phys
Physical properties section.
-
COV
public static final OcmDataSubStructureKey COV
Covariance time history section.
-
cov
public static final OcmDataSubStructureKey cov
Covariance time history section.
-
MAN
public static final OcmDataSubStructureKey MAN
Maneuvers section.
-
man
public static final OcmDataSubStructureKey man
Maneuvers section.
-
PERT
public static final OcmDataSubStructureKey PERT
Perturbations parameters section.
-
pert
public static final OcmDataSubStructureKey pert
Perturbations parameters section.
-
OD
public static final OcmDataSubStructureKey OD
Orbit determination section.
-
od
public static final OcmDataSubStructureKey od
Orbit determination section.
-
USER
public static final OcmDataSubStructureKey USER
User-defined parameters section.
-
user
public static final OcmDataSubStructureKey user
User-defined parameters section.
-
-
Method Detail
-
values
public static OcmDataSubStructureKey[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (OcmDataSubStructureKey c : OcmDataSubStructureKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OcmDataSubStructureKey valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
process
public boolean process(ParseToken token, OcmParser parser)
Process one token.- Parameters:
token
- token to processparser
- OCM file parser- Returns:
- true of token was accepted
-
-