Uses of Class
org.java_websocket.enums.HandshakeState
-
Packages that use HandshakeState Package Description org.java_websocket.drafts This package encapsulates all implementations in relation with the WebSocket drafts.org.java_websocket.enums This package encapsulates all enums. -
-
Uses of HandshakeState in org.java_websocket.drafts
Methods in org.java_websocket.drafts that return HandshakeState Modifier and Type Method Description HandshakeState
Draft_6455. acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
abstract HandshakeState
Draft. acceptHandshakeAsClient(ClientHandshake request, ServerHandshake response)
HandshakeState
Draft_6455. acceptHandshakeAsServer(ClientHandshake handshakedata)
abstract HandshakeState
Draft. acceptHandshakeAsServer(ClientHandshake handshakedata)
private HandshakeState
Draft_6455. containsRequestedProtocol(java.lang.String requestedProtocol)
Check if the requested protocol is part of this draft -
Uses of HandshakeState in org.java_websocket.enums
Methods in org.java_websocket.enums that return HandshakeState Modifier and Type Method Description static HandshakeState
HandshakeState. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static HandshakeState[]
HandshakeState. values()
Returns an array containing the constants of this enum type, in the order they are declared.
-