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 BACKUPBackup object.DECAYEDDecayed object.EXTENDED_MISSIONObject in extended mission.NONOPERATIONALNon-operational object.OPERATIONALOperational object.PARTIALLY_OPERATIONALpartially operational object.REENTRY_MODEObject in reentry mode.STANBYObject in stand-by.UNKNOWNUnknown status.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static OpsStatusvalueOf(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
-
-