public enum Aggregate extends java.lang.Enum<Aggregate>
Java class for aggregate.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="aggregate"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="AVG"/> <enumeration value="COUNT"/> <enumeration value="DCOUNT"/> <enumeration value="MAX"/> <enumeration value="MIN"/> <enumeration value="STDDEV"/> <enumeration value="SUM"/> <enumeration value="DISTINCT"/> <enumeration value="NONE"/> <enumeration value="POINT"/> </restriction> </simpleType>
Enum Constant and Description |
---|
AVG |
COUNT |
DCOUNT |
DISTINCT |
MAX |
MIN |
NONE |
POINT |
STDDEV |
SUM |
Modifier and Type | Method and Description |
---|---|
static Aggregate |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static Aggregate |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Aggregate[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregate AVG
public static final Aggregate COUNT
public static final Aggregate DCOUNT
public static final Aggregate MAX
public static final Aggregate MIN
public static final Aggregate STDDEV
public static final Aggregate SUM
public static final Aggregate DISTINCT
public static final Aggregate NONE
public static final Aggregate POINT
public static Aggregate[] values()
for (Aggregate c : Aggregate.values()) System.out.println(c);
public static Aggregate 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 java.lang.String value()
public static Aggregate fromValue(java.lang.String v)