public enum AggregationFunction extends java.lang.Enum<AggregationFunction>
Enum Constant and Description |
---|
AVG |
COUNT |
COUNTDISTINCT |
MAX |
MEDIAN |
MIN |
SET |
STDDEV |
SUM |
VARIANCE |
Modifier and Type | Method and Description |
---|---|
boolean |
compatibleToDataType(com.oracle.endeca.pdi.concepts.MdexType dataType) |
java.lang.String |
toString() |
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 MEDIAN
public static final AggregationFunction MIN
public static final AggregationFunction MAX
public static final AggregationFunction VARIANCE
public static final AggregationFunction STDDEV
public static final AggregationFunction COUNT
public static final AggregationFunction COUNTDISTINCT
public static final AggregationFunction SET
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 nullpublic boolean compatibleToDataType(com.oracle.endeca.pdi.concepts.MdexType dataType)
public java.lang.String toString()
toString
in class java.lang.Enum<AggregationFunction>
Copyright 2003, 2014, Oracle and/or its affiliates. All rights reserved.