public enum SetOperation extends Enum<SetOperation> implements CacheOperation
| Enum Constant and Description |
|---|
ADD_IF_ABSENT |
CLOSE |
CONTAINS |
REMOVE |
| Modifier and Type | Method and Description |
|---|---|
String |
value()
Get Cache Operation value used during protocol communication
|
static SetOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SetOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SetOperation ADD_IF_ABSENT
public static final SetOperation CONTAINS
public static final SetOperation REMOVE
public static final SetOperation CLOSE
private final String operation
public static SetOperation[] values()
for (SetOperation c : SetOperation.values()) System.out.println(c);
public static SetOperation 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 nullpublic String value()
CacheOperationvalue in interface CacheOperationCopyright © 2022 Apache NiFi Project. All rights reserved.