public static enum ReturnAggregate.AggregateFunctionType extends Enum<ReturnAggregate.AggregateFunctionType>
| Enum Constant and Description |
|---|
AVG |
MAX |
MIN |
PERCENTILE_CONT |
PERCENTILE_DISC |
STDEV |
STDEVP |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static ReturnAggregate.AggregateFunctionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReturnAggregate.AggregateFunctionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReturnAggregate.AggregateFunctionType SUM
public static final ReturnAggregate.AggregateFunctionType AVG
public static final ReturnAggregate.AggregateFunctionType PERCENTILE_DISC
public static final ReturnAggregate.AggregateFunctionType PERCENTILE_CONT
public static final ReturnAggregate.AggregateFunctionType STDEV
public static final ReturnAggregate.AggregateFunctionType STDEVP
public static final ReturnAggregate.AggregateFunctionType MAX
public static final ReturnAggregate.AggregateFunctionType MIN
public static ReturnAggregate.AggregateFunctionType[] values()
for (ReturnAggregate.AggregateFunctionType c : ReturnAggregate.AggregateFunctionType.values()) System.out.println(c);
public static ReturnAggregate.AggregateFunctionType 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 nullCopyright © 2016. All rights reserved.