public static enum Indexed.Action extends Enum<Indexed.Action>
| Enum Constant and Description |
|---|
ADD
Adds an object to index.
|
ADD_ALL
Adds many objects to index.
|
NOOP
No operation.
|
REMOVE
Removes object from index.
|
REMOVE_ALL
Removes many objects from index.
|
| Modifier and Type | Method and Description |
|---|---|
static Indexed.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Indexed.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Indexed.Action NOOP
public static final Indexed.Action ADD
public static final Indexed.Action REMOVE
public static final Indexed.Action ADD_ALL
public static final Indexed.Action REMOVE_ALL
public static Indexed.Action[] values()
for (Indexed.Action c : Indexed.Action.values()) System.out.println(c);
public static Indexed.Action 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 © 2016 Erudika. All rights reserved.