public enum TimeWindowAggregationType extends java.lang.Enum<TimeWindowAggregationType>
| Enum Constant and Description |
|---|
AVG |
AVG_POOLING |
COUNT |
LATEST |
MAX |
MAX_POOLING |
MIN |
MIN_POOLING |
SUM |
TIMESINCE |
| Modifier and Type | Method and Description |
|---|---|
static TimeWindowAggregationType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TimeWindowAggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TimeWindowAggregationType SUM
public static final TimeWindowAggregationType COUNT
public static final TimeWindowAggregationType AVG
public static final TimeWindowAggregationType MAX
public static final TimeWindowAggregationType MIN
public static final TimeWindowAggregationType TIMESINCE
public static final TimeWindowAggregationType LATEST
public static final TimeWindowAggregationType AVG_POOLING
public static final TimeWindowAggregationType MAX_POOLING
public static final TimeWindowAggregationType MIN_POOLING
public static TimeWindowAggregationType[] values()
for (TimeWindowAggregationType c : TimeWindowAggregationType.values()) System.out.println(c);
public static TimeWindowAggregationType 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 namejava.lang.NullPointerException - if the argument is null