public enum AggregationFunction extends Enum<AggregationFunction>
| Modifier and Type | Method and Description |
|---|---|
static AggregationFunction |
getByValue(int value)
Get enum element by integer value
|
int |
getValue()
Get integer value
|
static AggregationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationFunction LAST
public static final AggregationFunction MIN
public static final AggregationFunction MAX
public static final AggregationFunction AVERAGE
public static final AggregationFunction SUM
public static AggregationFunction[] values()
for (AggregationFunction c : AggregationFunction.values()) System.out.println(c);
public static AggregationFunction 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 int getValue()
public static AggregationFunction getByValue(int value)
value - integer valueCopyright © 2018. All rights reserved.