Enum Class WsOpCode
- All Implemented Interfaces:
Serializable, Comparable<WsOpCode>, Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionintcode()Numeric code (used in binary frame representation) of this operation code.static WsOpCodeget(int code) Get operation code based on its numeric code.static WsOpCodeReturns 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
-