public static enum IndicesOptions.Option extends Enum<IndicesOptions.Option>
| Enum Constant and Description |
|---|
ALLOW_NO_INDICES |
FORBID_ALIASES_TO_MULTIPLE_INDICES |
FORBID_CLOSED_INDICES |
IGNORE_ALIASES |
IGNORE_THROTTLED |
IGNORE_UNAVAILABLE |
| Modifier and Type | Method and Description |
|---|---|
static IndicesOptions.Option |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndicesOptions.Option[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndicesOptions.Option IGNORE_UNAVAILABLE
public static final IndicesOptions.Option IGNORE_ALIASES
public static final IndicesOptions.Option ALLOW_NO_INDICES
public static final IndicesOptions.Option FORBID_ALIASES_TO_MULTIPLE_INDICES
public static final IndicesOptions.Option FORBID_CLOSED_INDICES
public static final IndicesOptions.Option IGNORE_THROTTLED
public static IndicesOptions.Option[] values()
for (IndicesOptions.Option c : IndicesOptions.Option.values()) System.out.println(c);
public static IndicesOptions.Option 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 © 2011–2022 Pivotal Software, Inc.. All rights reserved.