Enum Class OpsStatus

java.lang.Object
java.lang.Enum<OpsStatus>
org.orekit.files.ccsds.ndm.odm.ocm.OpsStatus
All Implemented Interfaces:
Serializable, Comparable<OpsStatus>, Constable

public enum OpsStatus extends Enum<OpsStatus>
Operational status used in CCSDS Orbit Comprehensive Messages.
Since:
11.0
Author:
Luc Maisonobe
  • Enum Constant Details

    • 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 Details

    • values

      public static OpsStatus[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static OpsStatus valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<OpsStatus>