public static enum SetRequest.Operation extends java.lang.Enum<SetRequest.Operation>
| Enum Constant and Description |
|---|
ADD |
APPEND |
CAS |
PREPEND |
REPLACE |
SET |
| Modifier and Type | Method and Description |
|---|---|
static SetRequest.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SetRequest.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetRequest.Operation SET
public static final SetRequest.Operation ADD
public static final SetRequest.Operation REPLACE
public static final SetRequest.Operation APPEND
public static final SetRequest.Operation PREPEND
public static final SetRequest.Operation CAS
public static SetRequest.Operation[] values()
for (SetRequest.Operation c : SetRequest.Operation.values()) System.out.println(c);
public static SetRequest.Operation valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright © 2020 Spotify AB. All Rights Reserved.