Package org.orekit.files.ccsds.ndm.cdm
Enum XmlSubStructureKey
- java.lang.Object
-
- java.lang.Enum<XmlSubStructureKey>
-
- org.orekit.files.ccsds.ndm.cdm.XmlSubStructureKey
-
- All Implemented Interfaces:
Serializable,Comparable<XmlSubStructureKey>
public enum XmlSubStructureKey extends Enum<XmlSubStructureKey>
Keywords for CDM data sub-structure in XML files.- Since:
- 11.2
- Author:
- Melina Vanel
-
-
Enum Constant Summary
Enum Constants Enum Constant Description additionalParametersAdditional Parameter section.COMMENTGeneral comment.covarianceMatrixCovariance Matrix section.odParametersOD Parameters section.relativeMetadataDataRelative Metadata section.relativeStateVectorRelative Metadata section.segmentSegment structure.stateVectorState Vector section.userDefinedParametersUser-defined parameters section.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanprocess(ParseToken token, CdmParser parser)Process one token.static XmlSubStructureKeyvalueOf(String name)Returns the enum constant of this type with the specified name.static XmlSubStructureKey[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMMENT
public static final XmlSubStructureKey COMMENT
General comment.
-
relativeMetadataData
public static final XmlSubStructureKey relativeMetadataData
Relative Metadata section.
-
segment
public static final XmlSubStructureKey segment
Segment structure.
-
relativeStateVector
public static final XmlSubStructureKey relativeStateVector
Relative Metadata section.
-
odParameters
public static final XmlSubStructureKey odParameters
OD Parameters section.
-
additionalParameters
public static final XmlSubStructureKey additionalParameters
Additional Parameter section.
-
stateVector
public static final XmlSubStructureKey stateVector
State Vector section.
-
covarianceMatrix
public static final XmlSubStructureKey covarianceMatrix
Covariance Matrix section.
-
userDefinedParameters
public static final XmlSubStructureKey userDefinedParameters
User-defined parameters section.
-
-
Method Detail
-
values
public static XmlSubStructureKey[] 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 (XmlSubStructureKey c : XmlSubStructureKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XmlSubStructureKey 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, CdmParser parser)
Process one token.- Parameters:
token- token to processparser- CDM file parser- Returns:
- true of token was accepted
-
-