public static enum ServerManager.ServerLiveState extends Enum<ServerManager.ServerLiveState>
Modifier and Type | Method and Description |
---|---|
static ServerManager.ServerLiveState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServerManager.ServerLiveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServerManager.ServerLiveState LIVE
public static final ServerManager.ServerLiveState DEAD
public static final ServerManager.ServerLiveState UNKNOWN
public static ServerManager.ServerLiveState[] values()
for (ServerManager.ServerLiveState c : ServerManager.ServerLiveState.values()) System.out.println(c);
public static ServerManager.ServerLiveState 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 © 2007–2020 The Apache Software Foundation. All rights reserved.