Enum DisconnectReason
- java.lang.Object
-
- java.lang.Enum<DisconnectReason>
-
- org.atmosphere.socketio.transport.DisconnectReason
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DisconnectReason>
public enum DisconnectReason extends java.lang.Enum<DisconnectReason>
- Author:
- Sebastien Dionne : sebastien.dionne@gmail.com
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLOSE_FAILEDCLOSEDCLOSED_REMOTELYCONNECT_FAILEDDISCONNECTERRORTIMEOUTUNKNOWN
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DisconnectReasonfromInt(int val)intvalue()static DisconnectReasonvalueOf(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.
-
-
-
Enum Constant Detail
-
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
-
-
Method Detail
-
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(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
value
public int value()
-
fromInt
public static DisconnectReason fromInt(int val)
-
-