public static enum Operation.Operator extends Enum<Operation.Operator>
Enum Constant and Description |
---|
ADD |
CLEAR |
DELETE_BY_INDEX |
DELETE_BY_OPERATOR |
OVERWRITE |
REMOVE |
Modifier and Type | Method and Description |
---|---|
static Operation.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Operation.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Operation.Operator ADD
public static final Operation.Operator REMOVE
public static final Operation.Operator CLEAR
public static final Operation.Operator OVERWRITE
public static final Operation.Operator DELETE_BY_OPERATOR
public static final Operation.Operator DELETE_BY_INDEX
public static Operation.Operator[] values()
for (Operation.Operator c : Operation.Operator.values()) System.out.println(c);
public static Operation.Operator 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 © 2019. All rights reserved.