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