public enum StreamFrom extends Enum<StreamFrom>
| Enum Constant and Description |
|---|
BEGINNING
Start at the very beginning - will stream all docs in the bucket.
|
NOW
Start "now", where now is a time point of execution in the running program where the state
is gathered from each partition.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamFrom |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamFrom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamFrom BEGINNING
public static final StreamFrom NOW
public static StreamFrom[] values()
for (StreamFrom c : StreamFrom.values()) System.out.println(c);
public static StreamFrom 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.