public enum IndexAction extends Enum<IndexAction>
| Enum Constant and Description |
|---|
CREATE |
DELETE
Action to delete an index.
|
DELETE_BY_QUERY
Action to delete a subset of documents.
|
FEED
Action to feed an index.
|
IDENTIFY
Action to identify the index service.
|
| Modifier and Type | Method and Description |
|---|---|
static IndexAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexAction CREATE
public static final IndexAction FEED
public static final IndexAction DELETE
public static final IndexAction DELETE_BY_QUERY
public static final IndexAction IDENTIFY
public static IndexAction[] values()
for (IndexAction c : IndexAction.values()) System.out.println(c);
public static IndexAction 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 © 2023. All rights reserved.