public enum AggregationType extends Enum<AggregationType>
| Enum Constant and Description |
|---|
AVERAGE |
AVERAGE_SUM_ORG_UNIT |
COUNT |
LAST |
LAST_AVERAGE_ORG_UNIT |
MAX |
MIN |
NONE |
STDDEV |
SUM |
VARIANCE |
| Modifier and Type | Field and Description |
|---|---|
static Set<AggregationType> |
AVERAGE_TYPES |
static Set<AggregationType> |
LAST_TYPES |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAverage() |
static AggregationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggregationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggregationType SUM
public static final AggregationType AVERAGE
public static final AggregationType AVERAGE_SUM_ORG_UNIT
public static final AggregationType LAST
public static final AggregationType LAST_AVERAGE_ORG_UNIT
public static final AggregationType COUNT
public static final AggregationType STDDEV
public static final AggregationType VARIANCE
public static final AggregationType MIN
public static final AggregationType MAX
public static final AggregationType NONE
public static final Set<AggregationType> AVERAGE_TYPES
public static final Set<AggregationType> LAST_TYPES
public static AggregationType[] values()
for (AggregationType c : AggregationType.values()) System.out.println(c);
public static AggregationType 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 boolean isAverage()
Copyright © 2019 UiO. All rights reserved.