Package org.infinispan.server.hotrod
Enum HotRodOperation
- All Implemented Interfaces:
Serializable
,Comparable<HotRodOperation>
Enumeration defining all of the possible hotrod operations
- Since:
- 9.0
- Author:
- wburns
-
Enum Constant Summary
Enum ConstantDescription -
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic HotRodOperation
fromRequestOpCode
(byte op) static HotRodOperation
fromResponseOpCode
(byte op) int
int
static HotRodOperation
Returns the enum constant of this type with the specified name.static HotRodOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
PUT
-
PUT_IF_ABSENT
-
REPLACE
-
REPLACE_IF_UNMODIFIED
-
CONTAINS_KEY
-
GET
-
GET_WITH_VERSION
-
GET_WITH_METADATA
-
REMOVE
-
REMOVE_IF_UNMODIFIED
-
PING
-
STATS
-
CLEAR
-
SIZE
-
AUTH_MECH_LIST
-
AUTH
-
EXEC
-
BULK_GET
-
BULK_GET_KEYS
-
QUERY
-
ADD_CLIENT_LISTENER
-
REMOVE_CLIENT_LISTENER
-
ITERATION_START
-
ITERATION_NEXT
-
ITERATION_END
-
ADD_BLOOM_FILTER_CLIENT_LISTENER
-
UPDATE_BLOOM_FILTER
-
PUT_ALL
-
GET_ALL
-
GET_STREAM
-
PUT_STREAM
-
PREPARE_TX
-
COMMIT_TX
-
ROLLBACK_TX
-
FORGET_TX
-
FETCH_TX_RECOVERY
-
PREPARE_TX_2
-
COUNTER_CREATE
-
COUNTER_GET_CONFIGURATION
-
COUNTER_IS_DEFINED
-
COUNTER_ADD_AND_GET
-
COUNTER_RESET
-
COUNTER_GET
-
COUNTER_CAS
-
COUNTER_ADD_LISTENER
-
COUNTER_REMOVE_LISTENER
-
COUNTER_REMOVE
-
COUNTER_GET_NAMES
-
GET_MULTIMAP
-
GET_MULTIMAP_WITH_METADATA
-
PUT_MULTIMAP
-
REMOVE_MULTIMAP
-
REMOVE_ENTRY_MULTIMAP
-
SIZE_MULTIMAP
-
CONTAINS_ENTRY_MULTIMAP
-
CONTAINS_KEY_MULTIMAP
-
CONTAINS_VALUE_MULTIMAP
-
ERROR
-
CACHE_ENTRY_CREATED_EVENT
-
CACHE_ENTRY_MODIFIED_EVENT
-
CACHE_ENTRY_REMOVED_EVENT
-
CACHE_ENTRY_EXPIRED_EVENT
-
COUNTER_EVENT
-
-
Field Details
-
REQUEST_COUNT
public static final int REQUEST_COUNT
-
-
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
-
getRequestOpCode
public int getRequestOpCode() -
getResponseOpCode
public int getResponseOpCode() -
fromRequestOpCode
-
fromResponseOpCode
-