public enum OpsStatus extends Enum<OpsStatus>
轨道综合消息
中使用的运行状态。
Enum Constant and Description |
---|
BACKUP
备用对象。
|
DECAYED
衰变对象。
|
EXTENDED_MISSION
处于延长任务中的对象。
|
NONOPERATIONAL
非运行对象。
|
OPERATIONAL
运行对象。
|
PARTIALLY_OPERATIONAL
部分运行对象。
|
REENTRY_MODE
处于重返模式的对象。
|
STANBY
处于待机状态的对象。
|
UNKNOWN
未知状态。
|
Modifier and Type | Method and Description |
---|---|
String |
toString() |
static OpsStatus |
valueOf(String name)
返回具有指定名称的枚举常量。
|
static OpsStatus[] |
values()
返回一个包含此枚举类型常量的数组,按照它们声明的顺序排列。
|
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
- 要返回的枚举常量的名称。
IllegalArgumentException
- 如果此枚举类型没有具有指定名称的常量
NullPointerException
- 如果参数为null
Copyright © 2002-2023 CS GROUP. All rights reserved.