public static enum TimeSeries.QueryResult.StreamStructure extends Enum<TimeSeries.QueryResult.StreamStructure>
| Enum Constant and Description |
|---|
EDIT_EVENT_STREAM
The stream is presented in time series order.
|
VALUE_EVENT_STREAM
The stream is ordered by the original event sequence number,
presenting edit events instead of the original events they
replace.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeSeries.QueryResult.StreamStructure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TimeSeries.QueryResult.StreamStructure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeSeries.QueryResult.StreamStructure VALUE_EVENT_STREAM
The original event sequence number of an event e
is e.originalEvent().sequence(). It is equal to
e.sequence()}, if and only if e is an original
event.
The stream has the following properties:
public static final TimeSeries.QueryResult.StreamStructure EDIT_EVENT_STREAM
The stream has the following properties:
public static TimeSeries.QueryResult.StreamStructure[] values()
for (TimeSeries.QueryResult.StreamStructure c : TimeSeries.QueryResult.StreamStructure.values()) System.out.println(c);
public static TimeSeries.QueryResult.StreamStructure 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 © 2024 DiffusionData Limited. All rights reserved.