public enum Aggregations extends Enum<Aggregations>
| Enum Constant and Description |
|---|
avg |
cardinality |
max |
min |
sum |
value_count |
| Modifier and Type | Method and Description |
|---|---|
void |
build(com.fasterxml.jackson.databind.node.ObjectNode targetAggNode,
String columnName,
String alias) |
static Aggregations |
getFor(String hqlAggregationName) |
static Aggregations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregations value_count
public static final Aggregations cardinality
public static final Aggregations max
public static final Aggregations sum
public static final Aggregations min
public static final Aggregations avg
public static Aggregations[] values()
for (Aggregations c : Aggregations.values()) System.out.println(c);
public static Aggregations 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 void build(com.fasterxml.jackson.databind.node.ObjectNode targetAggNode,
String columnName,
String alias)
public static Aggregations getFor(String hqlAggregationName) throws InvalidQueryException
InvalidQueryExceptionCopyright © 2014–2016 Apache Software Foundation. All rights reserved.