- All Implemented Interfaces:
Serializable
,Comparable<WsOpCode>
,Constable
WebSocket operation code.
Each frame has an operation code to easily understand what should be done.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionint
code()
Numeric code (used in binary frame representation) of this operation code.static WsOpCode
get
(int code) Get operation code based on its numeric code.static WsOpCode
Returns the enum constant of this class with the specified name.static WsOpCode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTINUATION
Continuation frame. -
TEXT
Payload frame with text payload. -
BINARY
Payload frame with binary payload. -
CLOSE
Close control frame. -
PING
Ping control frame. -
PONG
Pong control frame.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
get
Get operation code based on its numeric code.- Parameters:
code
- code- Returns:
- operation code for the numeric code
- Throws:
IllegalArgumentException
- in case the code is not valid
-
code
public int code()Numeric code (used in binary frame representation) of this operation code.- Returns:
- numeric code
-