- All Implemented Interfaces:
Serializable,Comparable<AclCategory>,java.lang.constant.Constable
public enum AclCategory extends Enum<AclCategory>
Enum object describing Redis ACL categories.
- Since:
- 6.1
- Author:
- Mikhael Sokolov
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants Enum Constant Description ADMINadmin commandBITMAPcommand for bitmapsBLOCKINGblocking commandCONNECTIONconnection-establishing commandDANGEROUSdangerous commandFASTfast commandGEOgeo commandHASHcommand for hash opsHYPERLOGLOGcommand for hyperloglogKEYSPACEcommand affects keyspaceLISTcommand for listsPUBSUBpubsub commandREADread commandSCRIPTINGscripting commandSETcommand for setsSLOWslow commandSORTEDSETcommand for sorted setsSTREAMstreaming commandSTRINGcommand for stringsTRANSACTIONtransactional commandWRITEwrite command -
Method Summary
Modifier and Type Method Description static AclCategoryvalueOf(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.
-
Enum Constant Details
-
KEYSPACE
command affects keyspace -
READ
read command -
WRITE
write command -
SET
command for sets -
SORTEDSET
command for sorted sets -
LIST
command for lists -
HASH
command for hash ops -
STRING
command for strings -
BITMAP
command for bitmaps -
HYPERLOGLOG
command for hyperloglog -
GEO
geo command -
STREAM
streaming command -
PUBSUB
pubsub command -
ADMIN
admin command -
FAST
fast command -
SLOW
slow command -
BLOCKING
blocking command -
DANGEROUS
dangerous command -
CONNECTION
connection-establishing command -
TRANSACTION
transactional command -
SCRIPTING
scripting command
-
-
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
-