Uses of Class
org.java_websocket.WebSocket.Role
-
Packages that use WebSocket.Role Package Description org.java_websocket org.java_websocket.drafts This package encapsulates all implementations in relation with the WebSocket drafts. -
-
Uses of WebSocket.Role in org.java_websocket
Methods in org.java_websocket that return WebSocket.Role Modifier and Type Method Description static WebSocket.Role
WebSocket.Role. valueOf(String name)
Returns the enum constant of this type with the specified name.static WebSocket.Role[]
WebSocket.Role. values()
Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of WebSocket.Role in org.java_websocket.drafts
Fields in org.java_websocket.drafts declared as WebSocket.Role Modifier and Type Field Description protected WebSocket.Role
Draft. role
In some cases the handshake will be parsed different depending on whetherMethods in org.java_websocket.drafts that return WebSocket.Role Modifier and Type Method Description WebSocket.Role
Draft. getRole()
Methods in org.java_websocket.drafts with parameters of type WebSocket.Role Modifier and Type Method Description List<ByteBuffer>
Draft. createHandshake(Handshakedata handshakedata, WebSocket.Role ownrole)
List<ByteBuffer>
Draft. createHandshake(Handshakedata handshakedata, WebSocket.Role ownrole, boolean withcontent)
void
Draft. setParseMode(WebSocket.Role role)
static HandshakeBuilder
Draft. translateHandshakeHttp(ByteBuffer buf, WebSocket.Role role)
-