public enum DisconnectReason extends java.lang.Enum<DisconnectReason>
| Enum Constant and Description |
|---|
BondingKeysMismatch |
ConnectionEstablishmentFailed |
TimedOut |
Unspecified |
| Modifier and Type | Method and Description |
|---|---|
static DisconnectReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisconnectReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisconnectReason Unspecified
public static final DisconnectReason ConnectionEstablishmentFailed
public static final DisconnectReason TimedOut
public static final DisconnectReason BondingKeysMismatch
public static DisconnectReason[] values()
for (DisconnectReason c : DisconnectReason.values()) System.out.println(c);
public static DisconnectReason 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