public enum OutputLimitLimitType extends Enum<OutputLimitLimitType>
Enum Constant and Description |
---|
ALL
The ALL keyword has been explicitly specified: Output all events, relative to the output batch.
|
DEFAULT
The ALL keyword has not been explicitly specified: Output all events, relative to the output batch.
|
FIRST
Output first event, relative to the output batch.
|
LAST
Output last event, relative to the output batch.
|
SNAPSHOT
Output a snapshot of the current state, relative to the full historical state of a statement.
|
Modifier and Type | Method and Description |
---|---|
static OutputLimitLimitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OutputLimitLimitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OutputLimitLimitType FIRST
public static final OutputLimitLimitType LAST
public static final OutputLimitLimitType ALL
In the fully-grouped and aggregated case, the explicit ALL outputs one row for each group.
public static final OutputLimitLimitType DEFAULT
In the fully-grouped and aggregated case, the default ALL outputs all events of the batch row-by-row, multiple per group.
public static final OutputLimitLimitType SNAPSHOT
public static OutputLimitLimitType[] values()
for (OutputLimitLimitType c : OutputLimitLimitType.values()) System.out.println(c);
public static OutputLimitLimitType 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 null