public enum Aggregation extends Enum<Aggregation>
Enum Constant and Description |
---|
AVG |
COUNT |
FIRST |
LAST |
MAX |
MIN |
RANGE |
STD_P |
STD_S |
SUM |
VAR_P |
VAR_S |
Modifier and Type | Method and Description |
---|---|
byte[] |
getRaw() |
static Aggregation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregation AVG
public static final Aggregation SUM
public static final Aggregation MIN
public static final Aggregation MAX
public static final Aggregation RANGE
public static final Aggregation COUNT
public static final Aggregation FIRST
public static final Aggregation LAST
public static final Aggregation STD_P
public static final Aggregation STD_S
public static final Aggregation VAR_P
public static final Aggregation VAR_S
public static Aggregation[] values()
for (Aggregation c : Aggregation.values()) System.out.println(c);
public static Aggregation 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 byte[] getRaw()
Copyright © 2021. All rights reserved.