Enum WebSocketServerProtocolHandler.ServerHandshakeStateEvent
- java.lang.Object
-
- java.lang.Enum<WebSocketServerProtocolHandler.ServerHandshakeStateEvent>
-
- io.netty.handler.codec.http.websocketx.WebSocketServerProtocolHandler.ServerHandshakeStateEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WebSocketServerProtocolHandler.ServerHandshakeStateEvent>
- Enclosing class:
- WebSocketServerProtocolHandler
public static enum WebSocketServerProtocolHandler.ServerHandshakeStateEvent extends java.lang.Enum<WebSocketServerProtocolHandler.ServerHandshakeStateEvent>
Events that are fired to notify about handshake status
-
-
Enum Constant Summary
Enum Constants Enum Constant Description HANDSHAKE_COMPLETE
Deprecated.in favor ofWebSocketServerProtocolHandler.HandshakeComplete
class, it provides extra information about the handshakeHANDSHAKE_TIMEOUT
The Handshake was timed out
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WebSocketServerProtocolHandler.ServerHandshakeStateEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WebSocketServerProtocolHandler.ServerHandshakeStateEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
HANDSHAKE_COMPLETE
@Deprecated public static final WebSocketServerProtocolHandler.ServerHandshakeStateEvent HANDSHAKE_COMPLETE
Deprecated.in favor ofWebSocketServerProtocolHandler.HandshakeComplete
class, it provides extra information about the handshakeThe Handshake was completed successfully and the channel was upgraded to websockets.
-
HANDSHAKE_TIMEOUT
public static final WebSocketServerProtocolHandler.ServerHandshakeStateEvent HANDSHAKE_TIMEOUT
The Handshake was timed out
-
-
Method Detail
-
values
public static WebSocketServerProtocolHandler.ServerHandshakeStateEvent[] 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 (WebSocketServerProtocolHandler.ServerHandshakeStateEvent c : WebSocketServerProtocolHandler.ServerHandshakeStateEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WebSocketServerProtocolHandler.ServerHandshakeStateEvent 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
-
-