@InterfaceStability.Experimental @InterfaceAudience.Public public enum ScanConsistency extends Enum<ScanConsistency>
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 ScanConsistency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScanConsistency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScanConsistency NOT_BOUNDED
public static ScanConsistency[] values()
for (ScanConsistency c : ScanConsistency.values()) System.out.println(c);
public static ScanConsistency 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.