public enum StandardCacheOperation extends Enum<StandardCacheOperation> implements CacheOperation
| Enum Constant and Description |
|---|
CLOSE |
| Modifier and Type | Method and Description |
|---|---|
String |
value()
Get Cache Operation value used during protocol communication
|
static StandardCacheOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StandardCacheOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StandardCacheOperation CLOSE
private final String operation
public static StandardCacheOperation[] values()
for (StandardCacheOperation c : StandardCacheOperation.values()) System.out.println(c);
public static StandardCacheOperation 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.