public static enum SymphonyProtocol.BootstrapStatus extends java.lang.Enum<SymphonyProtocol.BootstrapStatus>
| Enum Constant and Description |
|---|
NEW |
OFFLINE |
ONLINE |
ONLINE_AND_ALL_NEIGHBOURS_OFFLINE |
| Modifier and Type | Method and Description |
|---|---|
static SymphonyProtocol.BootstrapStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SymphonyProtocol.BootstrapStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymphonyProtocol.BootstrapStatus NEW
public static final SymphonyProtocol.BootstrapStatus OFFLINE
public static final SymphonyProtocol.BootstrapStatus ONLINE_AND_ALL_NEIGHBOURS_OFFLINE
public static final SymphonyProtocol.BootstrapStatus ONLINE
public static SymphonyProtocol.BootstrapStatus[] values()
for (SymphonyProtocol.BootstrapStatus c : SymphonyProtocol.BootstrapStatus.values()) System.out.println(c);
public static SymphonyProtocol.BootstrapStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null