public enum AclCategory extends Enum<AclCategory>
| Enum Constant and Description |
|---|
ADMIN
admin command
|
BITMAP
command for bitmaps
|
BLOCKING
blocking command
|
BLOOM
bloom command
|
CMS
count-min-sketch command
|
CONNECTION
connection-establishing command
|
CUCKOO
cuckoo command
|
DANGEROUS
dangerous command
|
FAST
fast command
|
GEO
geo command
|
HASH
command for hash ops
|
HYPERLOGLOG
command for hyperloglog
|
JSON
json command
|
KEYSPACE
command affects keyspace
|
LIST
command for lists
|
PUBSUB
pubsub command
|
READ
read command
|
SCRIPTING
scripting command
|
SEARCH
search command
|
SET
command for sets
|
SLOW
slow command
|
SORTEDSET
command for sorted sets
|
STREAM
streaming command
|
STRING
command for strings
|
TDIGEST
t-digest command
|
TIMESERIES
timeseries command
|
TOPK
top-k command
|
TRANSACTION
transactional command
|
WRITE
write command
|
| Modifier and Type | Method and Description |
|---|---|
static AclCategory |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AclCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AclCategory KEYSPACE
public static final AclCategory READ
public static final AclCategory WRITE
public static final AclCategory SET
public static final AclCategory SORTEDSET
public static final AclCategory LIST
public static final AclCategory HASH
public static final AclCategory STRING
public static final AclCategory BITMAP
public static final AclCategory HYPERLOGLOG
public static final AclCategory GEO
public static final AclCategory STREAM
public static final AclCategory PUBSUB
public static final AclCategory ADMIN
public static final AclCategory FAST
public static final AclCategory SLOW
public static final AclCategory BLOCKING
public static final AclCategory DANGEROUS
public static final AclCategory CONNECTION
public static final AclCategory TRANSACTION
public static final AclCategory SCRIPTING
public static final AclCategory BLOOM
public static final AclCategory CUCKOO
public static final AclCategory CMS
public static final AclCategory TOPK
public static final AclCategory TDIGEST
public static final AclCategory SEARCH
public static final AclCategory TIMESERIES
public static final AclCategory JSON
public static AclCategory[] values()
for (AclCategory c : AclCategory.values()) System.out.println(c);
public static AclCategory 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 nullCopyright © 2025 lettuce.io. All rights reserved.