public class AggregateMethod
extends java.lang.Object
Represents the method of the aggregate transformation item.
Modifier and Type | Field and Description |
---|---|
static AggregateMethod |
average |
static AggregateMethod |
countDistinct |
static AggregateMethod |
maximum |
static AggregateMethod |
minimum |
static AggregateMethod |
sum |
Modifier and Type | Method and Description |
---|---|
static AggregateMethod |
custom(java.lang.String name)
Creates a custom aggregate method.
|
java.lang.String |
getName()
Return the name of the aggregate method.
|
public static final AggregateMethod sum
public static final AggregateMethod average
public static final AggregateMethod minimum
public static final AggregateMethod maximum
public static final AggregateMethod countDistinct
public static AggregateMethod custom(java.lang.String name)
Creates a custom aggregate method.
name
- The name of the custom aggregate method.public java.lang.String getName()
Return the name of the aggregate method.