public enum CloseState extends Enum<CloseState>
| 枚举常量和说明 |
|---|
CLOSED |
LOCALLY_CLOSED |
NOT_CLOSED |
REMOTELY_CLOSED |
public static final CloseState NOT_CLOSED
public static final CloseState LOCALLY_CLOSED
public static final CloseState REMOTELY_CLOSED
public static final CloseState CLOSED
public static CloseState[] values()
for (CloseState c : CloseState.values()) System.out.println(c);
public static CloseState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2017. All rights reserved.