public enum SingleOperationType extends Enum<SingleOperationType>
Enum Constant and Description |
---|
DELETE
For DeleteOperation
|
WRITE
For WriteOperation
|
Modifier and Type | Method and Description |
---|---|
static SingleOperationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleOperationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleOperationType WRITE
public static final SingleOperationType DELETE
public static SingleOperationType[] values()
for (SingleOperationType c : SingleOperationType.values()) System.out.println(c);
public static SingleOperationType 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 © 2003–2016 Terracotta, Inc.. All rights reserved.