Enum Class ScriptFlags
- All Implemented Interfaces:
Serializable
,Comparable<ScriptFlags>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionallow the script to access keys from multiple slots.use this flag to allow a script to execute when the server is out of memory (OOM).allow running the script on a stale replica.EVAL Script backwards compatible behavior, no shebang providedreturn an error if the script is executed in clustered mode.this flag indicates that the script only reads data but never writes. -
Method Summary
Modifier and TypeMethodDescriptionboolean
isSet
(long mask) long
value()
static ScriptFlags
Returns the enum constant of this class with the specified name.static ScriptFlags[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_WRITES
this flag indicates that the script only reads data but never writes. -
ALLOW_OOM
use this flag to allow a script to execute when the server is out of memory (OOM). -
ALLOW_STALE
allow running the script on a stale replica. -
NO_CLUSTER
return an error if the script is executed in clustered mode. -
EVAL_COMPAT_MODE
EVAL Script backwards compatible behavior, no shebang provided -
ALLOW_CROSS_SLOT_KEYS
allow the script to access keys from multiple slots.
-
-
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
-
isSet
public boolean isSet(long mask) -
value
public long value()
-