public enum GridRestCommand extends Enum<GridRestCommand>
| Enum Constant and Description |
|---|
ADD_USER |
ATOMIC_DECREMENT
Decrement.
|
ATOMIC_INCREMENT
Increment.
|
AUTHENTICATE |
BASELINE_ADD |
BASELINE_CURRENT_STATE |
BASELINE_REMOVE |
BASELINE_SET |
CACHE_ADD
Store value in cache if it doesn't exist.
|
CACHE_APPEND
Append.
|
CACHE_CAS
Compare and set.
|
CACHE_CLEAR
Clear the specified cache.
|
CACHE_CONTAINS_KEY
Contains cached value.
|
CACHE_CONTAINS_KEYS
Contains cached values.
|
CACHE_GET
Get cached value.
|
CACHE_GET_ALL
Get several cached values.
|
CACHE_GET_AND_PUT
Store value in cache and return previous value.
|
CACHE_GET_AND_PUT_IF_ABSENT
Store value in cache and return previous value.
|
CACHE_GET_AND_REMOVE
Remove value from cache.
|
CACHE_GET_AND_REPLACE
Replace cache value only if there is currently a mapping for it.
|
CACHE_METADATA
Cache metadata.
|
CACHE_METRICS
Cache metrics.
|
CACHE_PREPEND
Prepend.
|
CACHE_PUT
Store value in cache.
|
CACHE_PUT_ALL
Store several values in cache.
|
CACHE_PUT_IF_ABSENT
Store value in cache.
|
CACHE_REMOVE
Remove value from cache.
|
CACHE_REMOVE_ALL
Remove several values from cache.
|
CACHE_REMOVE_VALUE
Remove value from cache.
|
CACHE_REPLACE
Replace cache value only if there is currently a mapping for it.
|
CACHE_REPLACE_VALUE
Replace cache value only if there is currently a mapping for it.
|
CACHE_SIZE
Cache size.
|
CACHE_UPDATE_TLL
Set TTL for the key.
|
CLOSE_SQL_QUERY
Close query.
|
CLUSTER_ACTIVATE
Deprecated.
Use
CLUSTER_SET_STATE with ClusterState.ACTIVE instead. |
CLUSTER_ACTIVE
Deprecated.
Use
CLUSTER_SET_STATE with ClusterState.ACTIVE instead. |
CLUSTER_CURRENT_STATE
Deprecated.
Use
CLUSTER_STATE instead. |
CLUSTER_DEACTIVATE
Deprecated.
Use
CLUSTER_SET_STATE with ClusterState.INACTIVE instead. |
CLUSTER_INACTIVE
Deprecated.
Use
CLUSTER_SET_STATE with ClusterState.INACTIVE instead. |
CLUSTER_NAME |
CLUSTER_SET_STATE |
CLUSTER_STATE |
DATA_REGION_METRICS
Data region metrics.
|
DATA_STORAGE_METRICS
Data storage metrics.
|
DESTROY_CACHE
Stops dynamically started cache.
|
EXE
Task execution .
|
EXECUTE_SCAN_QUERY
Execute scan query.
|
EXECUTE_SQL_FIELDS_QUERY
Execute sql fields query.
|
EXECUTE_SQL_QUERY
Execute sql query.
|
FETCH_SQL_QUERY
Fetch query results.
|
GET_OR_CREATE_CACHE
Get or create cache.
|
LOG
Log.
|
NAME
Name.
|
NODE
Single node info.
|
NODE_STATE_BEFORE_START
Node state before its start.
|
NOOP
No-op.
|
PROBE
probe.
|
QUIT
Quit.
|
REMOVE_USER |
RESULT
Task execution .
|
TOPOLOGY
Grid topology.
|
UPDATE_USER |
VERSION
Version.
|
WARM_UP
Warm-up.
|
| Modifier and Type | Method and Description |
|---|---|
static @Nullable GridRestCommand |
fromKey(String key) |
static @Nullable GridRestCommand |
fromOrdinal(int ord) |
String |
key() |
static GridRestCommand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GridRestCommand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GridRestCommand CACHE_GET
public static final GridRestCommand CACHE_CONTAINS_KEY
public static final GridRestCommand CACHE_CONTAINS_KEYS
public static final GridRestCommand CACHE_GET_ALL
public static final GridRestCommand CACHE_GET_AND_PUT
public static final GridRestCommand CACHE_GET_AND_PUT_IF_ABSENT
public static final GridRestCommand CACHE_PUT
public static final GridRestCommand CACHE_PUT_IF_ABSENT
public static final GridRestCommand CACHE_ADD
public static final GridRestCommand CACHE_PUT_ALL
public static final GridRestCommand CACHE_REMOVE
public static final GridRestCommand CACHE_REMOVE_VALUE
public static final GridRestCommand CACHE_GET_AND_REMOVE
public static final GridRestCommand CACHE_REMOVE_ALL
public static final GridRestCommand CACHE_CLEAR
public static final GridRestCommand CACHE_REPLACE
public static final GridRestCommand CACHE_REPLACE_VALUE
public static final GridRestCommand CACHE_GET_AND_REPLACE
public static final GridRestCommand CACHE_CAS
public static final GridRestCommand CACHE_APPEND
public static final GridRestCommand CACHE_PREPEND
public static final GridRestCommand CACHE_METRICS
public static final GridRestCommand CACHE_SIZE
public static final GridRestCommand CACHE_UPDATE_TLL
public static final GridRestCommand CACHE_METADATA
public static final GridRestCommand ATOMIC_INCREMENT
public static final GridRestCommand ATOMIC_DECREMENT
public static final GridRestCommand TOPOLOGY
public static final GridRestCommand NODE
public static final GridRestCommand EXE
public static final GridRestCommand RESULT
public static final GridRestCommand VERSION
public static final GridRestCommand NAME
public static final GridRestCommand LOG
public static final GridRestCommand NOOP
public static final GridRestCommand QUIT
public static final GridRestCommand GET_OR_CREATE_CACHE
public static final GridRestCommand DESTROY_CACHE
public static final GridRestCommand EXECUTE_SQL_QUERY
public static final GridRestCommand EXECUTE_SQL_FIELDS_QUERY
public static final GridRestCommand EXECUTE_SCAN_QUERY
public static final GridRestCommand FETCH_SQL_QUERY
public static final GridRestCommand CLOSE_SQL_QUERY
@Deprecated public static final GridRestCommand CLUSTER_ACTIVE
CLUSTER_SET_STATE with ClusterState.ACTIVE instead.@Deprecated public static final GridRestCommand CLUSTER_INACTIVE
CLUSTER_SET_STATE with ClusterState.INACTIVE instead.@Deprecated public static final GridRestCommand CLUSTER_ACTIVATE
CLUSTER_SET_STATE with ClusterState.ACTIVE instead.@Deprecated public static final GridRestCommand CLUSTER_DEACTIVATE
CLUSTER_SET_STATE with ClusterState.INACTIVE instead.@Deprecated public static final GridRestCommand CLUSTER_CURRENT_STATE
CLUSTER_STATE instead.public static final GridRestCommand CLUSTER_NAME
public static final GridRestCommand CLUSTER_STATE
public static final GridRestCommand CLUSTER_SET_STATE
public static final GridRestCommand BASELINE_CURRENT_STATE
public static final GridRestCommand BASELINE_SET
public static final GridRestCommand BASELINE_ADD
public static final GridRestCommand BASELINE_REMOVE
public static final GridRestCommand AUTHENTICATE
public static final GridRestCommand ADD_USER
public static final GridRestCommand REMOVE_USER
public static final GridRestCommand UPDATE_USER
public static final GridRestCommand DATA_REGION_METRICS
public static final GridRestCommand DATA_STORAGE_METRICS
public static final GridRestCommand NODE_STATE_BEFORE_START
public static final GridRestCommand WARM_UP
public static final GridRestCommand PROBE
public static GridRestCommand[] values()
for (GridRestCommand c : GridRestCommand.values()) System.out.println(c);
public static GridRestCommand valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null@Nullable public static @Nullable GridRestCommand fromOrdinal(int ord)
ord - Byte to convert to enum.@Nullable public static @Nullable GridRestCommand fromKey(String key)
key - Key.public String key()
Follow @ApacheIgnite
Ignite Database and Caching Platform : ver. 2.10.0 Release Date : March 10 2021