Enum OpsStatus
- java.lang.Object
-
- java.lang.Enum<OpsStatus>
-
- org.orekit.files.ccsds.ndm.odm.ocm.OpsStatus
-
- All Implemented Interfaces:
Serializable
,Comparable<OpsStatus>
public enum OpsStatus extends Enum<OpsStatus>
Operational status used in CCSDSOrbit Comprehensive Messages
.- Since:
- 11.0
- Author:
- Luc Maisonobe
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKUP
Backup object.DECAYED
Decayed object.EXTENDED_MISSION
Object in extended mission.NONOPERATIONAL
Non-operational object.OPERATIONAL
Operational object.PARTIALLY_OPERATIONAL
partially operational object.REENTRY_MODE
Object in reentry mode.STANBY
Object in stand-by.UNKNOWN
Unknown status.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
static OpsStatus
valueOf(String name)
Returns the enum constant of this type with the specified name.static OpsStatus[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPERATIONAL
public static final OpsStatus OPERATIONAL
Operational object.
-
NONOPERATIONAL
public static final OpsStatus NONOPERATIONAL
Non-operational object.
-
PARTIALLY_OPERATIONAL
public static final OpsStatus PARTIALLY_OPERATIONAL
partially operational object.
-
BACKUP
public static final OpsStatus BACKUP
Backup object.
-
STANBY
public static final OpsStatus STANBY
Object in stand-by.
-
EXTENDED_MISSION
public static final OpsStatus EXTENDED_MISSION
Object in extended mission.
-
REENTRY_MODE
public static final OpsStatus REENTRY_MODE
Object in reentry mode.
-
DECAYED
public static final OpsStatus DECAYED
Decayed object.
-
UNKNOWN
public static final OpsStatus UNKNOWN
Unknown status.
-
-
Method Detail
-
values
public static OpsStatus[] 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 (OpsStatus c : OpsStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpsStatus 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
-
-