public enum AggregationStateType extends Enum<AggregationStateType>
Enum Constant and Description |
---|
FIRST
For "first" function.
|
LAST
For "last" function.
|
WINDOW
For "window" function.
|
Modifier and Type | Method and Description |
---|---|
static AggregationStateType |
fromString(String text) |
static AggregationStateType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationStateType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationStateType FIRST
public static final AggregationStateType LAST
public static final AggregationStateType WINDOW
public static AggregationStateType[] values()
for (AggregationStateType c : AggregationStateType.values()) System.out.println(c);
public static AggregationStateType 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 nullpublic static AggregationStateType fromString(String text)