@GwtCompatible public enum AggregationFunction extends java.lang.Enum<AggregationFunction>
Enumeration containing the valid aggregation functions which can be applied to a column.
Enum Constant and Description |
---|
AVG |
COUNT |
DISTINCT_COUNT |
INTERVAL_DAY
Deprecated.
|
INTERVAL_HOUR
Deprecated.
|
INTERVAL_MINUTE
Deprecated.
|
INTERVAL_WEEK
Deprecated.
|
MAX |
MIN |
SUM |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
LOCAL_PART |
static javax.xml.namespace.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
static AggregationFunction |
valueOf(java.lang.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 SUM
public static final AggregationFunction AVG
public static final AggregationFunction COUNT
public static final AggregationFunction MAX
public static final AggregationFunction MIN
public static final AggregationFunction DISTINCT_COUNT
@Deprecated public static final AggregationFunction INTERVAL_MINUTE
@Deprecated public static final AggregationFunction INTERVAL_HOUR
@Deprecated public static final AggregationFunction INTERVAL_DAY
@Deprecated public static final AggregationFunction INTERVAL_WEEK
public static final java.lang.String LOCAL_PART
public static final javax.xml.namespace.QName QNAME
public static AggregationFunction[] values()
for (AggregationFunction c : AggregationFunction.values()) System.out.println(c);
public static AggregationFunction valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2003-2024 Appian Corporation. All Rights Reserved.