|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<OutputLimitLimitType>
com.espertech.esper.epl.spec.OutputLimitLimitType
public enum OutputLimitLimitType
Enum for describing the type of output limit within an interval.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
static OutputLimitLimitType |
valueOf(java.lang.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. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
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
Method Detail |
---|
public static OutputLimitLimitType[] values()
for (OutputLimitLimitType c : OutputLimitLimitType.values()) System.out.println(c);
public static OutputLimitLimitType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
|
© 2006-2015 EsperTech Inc. All rights reserved. Visit us at espertech.com |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |