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 additionalParameters
Additional Parameter section.COMMENT
General comment.covarianceMatrix
Covariance Matrix section.odParameters
OD Parameters section.relativeMetadataData
Relative Metadata section.relativeStateVector
Relative Metadata section.segment
Segment structure.stateVector
State Vector section.userDefinedParameters
User-defined parameters section.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
process(ParseToken token, CdmParser parser)
Process one token.static XmlSubStructureKey
valueOf(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
-
-