Enum MemcacheProtocol.ServerPushOpcode
java.lang.Object
java.lang.Enum<MemcacheProtocol.ServerPushOpcode>
com.couchbase.client.core.io.netty.kv.MemcacheProtocol.ServerPushOpcode
- All Implemented Interfaces:
Serializable
,Comparable<MemcacheProtocol.ServerPushOpcode>
- Enclosing class:
- MemcacheProtocol
public static enum MemcacheProtocol.ServerPushOpcode
extends Enum<MemcacheProtocol.ServerPushOpcode>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionof
(byte input) byte
opcode()
Returns the opcode for the given command.Returns the enum constant of this type with the specified name.static MemcacheProtocol.ServerPushOpcode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
CLUSTERMAP_CHANGE_NOTIFICATION
-
AUTHENTICATE
-
ACTIVE_EXTERNAL_USERS
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
opcode
public byte opcode()Returns the opcode for the given command.- Returns:
- the opcode for the command.
-
of
-