org.atmosphere.socketio.transport
Enum DisconnectReason

java.lang.Object
  extended by java.lang.Enum<DisconnectReason>
      extended by org.atmosphere.socketio.transport.DisconnectReason
All Implemented Interfaces:
Serializable, Comparable<DisconnectReason>

public enum DisconnectReason
extends Enum<DisconnectReason>

Author:
Sebastien Dionne : sebastien.dionne@gmail.com

Enum Constant Summary
CLOSE_FAILED
           
CLOSED
           
CLOSED_REMOTELY
           
CONNECT_FAILED
           
DISCONNECT
           
ERROR
           
TIMEOUT
           
UNKNOWN
           
 
Method Summary
static DisconnectReason fromInt(int val)
           
 int value()
           
static DisconnectReason valueOf(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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

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(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 © 2014. All Rights Reserved.