org.atmosphere.socketio.transport
Enum DisconnectReason
java.lang.Object
java.lang.Enum<DisconnectReason>
org.atmosphere.socketio.transport.DisconnectReason
- All Implemented Interfaces:
- Serializable, Comparable<DisconnectReason>
public enum DisconnectReason
- extends Enum<DisconnectReason>
- Author:
- Sebastien Dionne : sebastien.dionne@gmail.com
UNKNOWN
public static final DisconnectReason UNKNOWN
CONNECT_FAILED
public static final DisconnectReason CONNECT_FAILED
DISCONNECT
public static final DisconnectReason DISCONNECT
TIMEOUT
public static final DisconnectReason TIMEOUT
CLOSE_FAILED
public static final DisconnectReason CLOSE_FAILED
ERROR
public static final DisconnectReason ERROR
CLOSED_REMOTELY
public static final DisconnectReason CLOSED_REMOTELY
CLOSED
public static final DisconnectReason CLOSED
values
public static DisconnectReason[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (DisconnectReason c : DisconnectReason.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static DisconnectReason valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
value
public int value()
fromInt
public static DisconnectReason fromInt(int val)
Copyright © 2015. All Rights Reserved.