Enum ManBasis
- java.lang.Object
-
- java.lang.Enum<ManBasis>
-
- org.orekit.files.ccsds.ndm.odm.ocm.ManBasis
-
- All Implemented Interfaces:
Serializable
,Comparable<ManBasis>
public enum ManBasis extends Enum<ManBasis>
Basis of maneuver used in CCSDSOrbit Comprehensive Messages
.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANTICIPATED
Non-cooperative future maneuver that is anticipated (i.e.CANDIDATE
Proposed operational or hypothetical future maneuver.DETERMINED_OD
Past maneuver reconstructed from orbit determination.DETERMINED_TLM
Past maneuver reconstructed from telemetry.OTHER
Other bases.PLANNED
Currently planned future maneuver.SIMULATED
Generic maneuver simulation.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ManBasis
valueOf(String name)
Returns the enum constant of this type with the specified name.static ManBasis[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CANDIDATE
public static final ManBasis CANDIDATE
Proposed operational or hypothetical future maneuver.
-
PLANNED
public static final ManBasis PLANNED
Currently planned future maneuver.
-
ANTICIPATED
public static final ManBasis ANTICIPATED
Non-cooperative future maneuver that is anticipated (i.e. likely) to occur.
-
DETERMINED_TLM
public static final ManBasis DETERMINED_TLM
Past maneuver reconstructed from telemetry.
-
DETERMINED_OD
public static final ManBasis DETERMINED_OD
Past maneuver reconstructed from orbit determination.
-
SIMULATED
public static final ManBasis SIMULATED
Generic maneuver simulation.
-
OTHER
public static final ManBasis OTHER
Other bases.
-
-
Method Detail
-
values
public static ManBasis[] 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 (ManBasis c : ManBasis.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ManBasis 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
-
-