@InterfaceStability.Uncommitted @InterfaceAudience.Public public enum SearchConsistency extends Enum<SearchConsistency>
An enum listing the various consistency levels for FTS searches that don’t need additional parameters (like a mutation token vector).
Enum Constant and Description |
---|
NOT_BOUNDED |
Modifier and Type | Method and Description |
---|---|
static SearchConsistency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchConsistency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchConsistency NOT_BOUNDED
public static SearchConsistency[] values()
for (SearchConsistency c : SearchConsistency.values()) System.out.println(c);
public static SearchConsistency 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 © 2015 Couchbase, Inc.