public enum DisconnectReason extends java.lang.Enum<DisconnectReason>
| Enum Constant and Description |
|---|
CLOSE_FAILED |
CLOSED |
CLOSED_REMOTELY |
CONNECT_FAILED |
DISCONNECT |
ERROR |
TIMEOUT |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static DisconnectReason |
fromInt(int val) |
int |
value() |
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 UNKNOWN
public static final DisconnectReason CONNECT_FAILED
public static final DisconnectReason DISCONNECT
public static final DisconnectReason TIMEOUT
public static final DisconnectReason CLOSE_FAILED
public static final DisconnectReason ERROR
public static final DisconnectReason CLOSED_REMOTELY
public static final DisconnectReason CLOSED
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 nullpublic int value()
public static DisconnectReason fromInt(int val)
Copyright © 2018. All Rights Reserved.