public enum OnlineState extends Enum<OnlineState>
| 枚举常量和说明 |
|---|
ALIVE
Member is reachable and responding on messages.
|
DEAD
Member declared as dead and left cluster.
|
LEAVING
Member want to leave cluster gracefully.
|
SUSPECT
Member can't be reached and marked as suspected to be failed.
|
public static final OnlineState ALIVE
public static final OnlineState SUSPECT
public static final OnlineState LEAVING
public static final OnlineState DEAD
public static OnlineState[] values()
for (OnlineState c : OnlineState.values()) System.out.println(c);
public static OnlineState valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2021. All rights reserved.