public enum ScriptOutputType extends Enum<ScriptOutputType>
ok field containing the statuserr field containing the errorfalse boolean typenull inside the Lua array if any)ok field -> Redis status replyerr field -> Redis error replyfalse -> Redis Nil bulk reply.| Enum Constant and Description |
|---|
BOOLEAN |
INTEGER |
MULTI |
STATUS |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ScriptOutputType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScriptOutputType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptOutputType BOOLEAN
public static final ScriptOutputType INTEGER
public static final ScriptOutputType MULTI
public static final ScriptOutputType STATUS
public static final ScriptOutputType VALUE
public static ScriptOutputType[] values()
for (ScriptOutputType c : ScriptOutputType.values()) System.out.println(c);
public static ScriptOutputType 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 © 2021 lettuce.io. All rights reserved.