Package org.infinispan.server.hotrod
Enum Class HotRodOperation
- All Implemented Interfaces:
Serializable
,Comparable<HotRodOperation>
,Constable
Enumeration defining all of the possible hotrod operations
- Since:
- 9.0
- Author:
- wburns
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
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 class with the specified name.static HotRodOperation[]
values()
Returns an array containing the constants of this enum class, 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
-
START_PUT_STREAM
-
NEXT_PUT_STREAM_REQUEST
-
END_PUT_STREAM_REQUEST
-
START_GET_STREAM_REQUEST
-
NEXT_GET_STREAM_REQUEST
-
END_GET_STREAM_REQUEST
-
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
-
COUNTER_GET_AND_SET
-
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 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
-
getRequestOpCode
public int getRequestOpCode() -
getResponseOpCode
public int getResponseOpCode() -
fromRequestOpCode
-
fromResponseOpCode
-