public enum ViewScanConsistency extends Enum<ViewScanConsistency>
Enum Constant and Description |
---|
NOT_BOUNDED |
REQUEST_PLUS |
UPDATE_AFTER |
Modifier and Type | Method and Description |
---|---|
static ViewScanConsistency |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ViewScanConsistency[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ViewScanConsistency NOT_BOUNDED
public static final ViewScanConsistency REQUEST_PLUS
public static final ViewScanConsistency UPDATE_AFTER
public static ViewScanConsistency[] values()
for (ViewScanConsistency c : ViewScanConsistency.values()) System.out.println(c);
public static ViewScanConsistency 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 © 2021 Couchbase, Inc.. All rights reserved.