public enum AggregationFunction extends java.lang.Enum<AggregationFunction>
Enum Constant and Description |
---|
AVERAGE |
DIFFERENCE |
LIKE |
MAXIMUM |
MINIMUM |
SUM |
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 MINIMUM
public static final AggregationFunction MAXIMUM
public static final AggregationFunction AVERAGE
public static final AggregationFunction DIFFERENCE
public static final AggregationFunction LIKE
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 ? 2008-2015 IBM Corp. All Rights Reserved.