public enum StreamTo extends Enum<StreamTo>
| Enum Constant and Description |
|---|
INFINITY
Never stop streaming automatically, but manual stream stop is of course possible.
|
NOW
Stop "now", where now is the time when the state is initialized that way.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamTo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamTo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StreamTo NOW
public static final StreamTo INFINITY
public static StreamTo[] values()
for (StreamTo c : StreamTo.values()) System.out.println(c);
public static StreamTo 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.