Enum AcmDataSubStructureKey
- java.lang.Object
-
- java.lang.Enum<AcmDataSubStructureKey>
-
- org.orekit.files.ccsds.ndm.adm.acm.AcmDataSubStructureKey
-
- All Implemented Interfaces:
Serializable
,Comparable<AcmDataSubStructureKey>
public enum AcmDataSubStructureKey extends Enum<AcmDataSubStructureKey>
Keywords for ACM data sub-structure.- Since:
- 12.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ad
Orbit determination section.AD
Attitude determination section.att
Trajectory state time history section.ATT
Attitude state time history section.cov
Covariance time history section.COV
Covariance time history section.man
Maneuvers section.MAN
Maneuvers section.phys
Physical properties section.PHYS
Physical properties 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, AcmParser parser)
Process one token.static AcmDataSubStructureKey
valueOf(String name)
Returns the enum constant of this type with the specified name.static AcmDataSubStructureKey[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ATT
public static final AcmDataSubStructureKey ATT
Attitude state time history section.
-
att
public static final AcmDataSubStructureKey att
Trajectory state time history section.
-
PHYS
public static final AcmDataSubStructureKey PHYS
Physical properties section.
-
phys
public static final AcmDataSubStructureKey phys
Physical properties section.
-
COV
public static final AcmDataSubStructureKey COV
Covariance time history section.
-
cov
public static final AcmDataSubStructureKey cov
Covariance time history section.
-
MAN
public static final AcmDataSubStructureKey MAN
Maneuvers section.
-
man
public static final AcmDataSubStructureKey man
Maneuvers section.
-
AD
public static final AcmDataSubStructureKey AD
Attitude determination section.
-
ad
public static final AcmDataSubStructureKey ad
Orbit determination section.
-
USER
public static final AcmDataSubStructureKey USER
User-defined parameters section.
-
user
public static final AcmDataSubStructureKey user
User-defined parameters section.
-
-
Method Detail
-
values
public static AcmDataSubStructureKey[] 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 (AcmDataSubStructureKey c : AcmDataSubStructureKey.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcmDataSubStructureKey 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, AcmParser parser)
Process one token.- Parameters:
token
- token to processparser
- ACM file parser- Returns:
- true of token was accepted
-
-