public enum OpsStatus extends Enum<OpsStatus>
Orbit Comprehensive Messages
.Enum Constant and 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.
|
Modifier and Type | Method and 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.
|
public static final OpsStatus OPERATIONAL
public static final OpsStatus NONOPERATIONAL
public static final OpsStatus PARTIALLY_OPERATIONAL
public static final OpsStatus BACKUP
public static final OpsStatus STANBY
public static final OpsStatus EXTENDED_MISSION
public static final OpsStatus REENTRY_MODE
public static final OpsStatus DECAYED
public static final OpsStatus UNKNOWN
public static OpsStatus[] values()
for (OpsStatus c : OpsStatus.values()) System.out.println(c);
public static OpsStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2002-2022 CS GROUP. All rights reserved.