public enum SearchOptions extends Enum<SearchOptions>
| Modifier and Type | Field and Description |
|---|---|
byte[] |
bytes |
| Modifier and Type | Method and Description |
|---|---|
static SearchOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchOptions IGNORE_UNAVAILABLE
public static final SearchOptions ALLOW_NO_INDICES
public static final SearchOptions EXPAND_WILDCARDS_OPEN
public static final SearchOptions EXPAND_WILDCARDS_CLOSED
public static final SearchOptions FORBID_ALIASES_TO_MULTIPLE_INDICES
public static final SearchOptions FORBID_CLOSED_INDICES
public static final SearchOptions STRICT_EXPAND_OPEN
public static final SearchOptions LENIENT_EXPAND_OPEN
public static final SearchOptions STRICT_EXPAND_OPEN_CLOSED
public static final SearchOptions STRICT_EXPAND_OPEN_FORBID_CLOSED
public static final SearchOptions STRICT_SINGLE_INDEX_NO_EXPAND_FORBID_CLOSED
public static SearchOptions[] values()
for (SearchOptions c : SearchOptions.values()) System.out.println(c);
public static SearchOptions 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 © 2012–2015 Polyglotted IO. All rights reserved.