public static enum Aggregate.Function extends Enum<Aggregate.Function>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="count"/>
<enumeration value="sum"/>
<enumeration value="average"/>
<enumeration value="min"/>
<enumeration value="max"/>
<enumeration value="multiset"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AVERAGE |
COUNT |
MAX |
MIN |
MULTISET |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static Aggregate.Function |
fromValue(String v) |
String |
value() |
static Aggregate.Function |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Aggregate.Function[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Aggregate.Function COUNT
public static final Aggregate.Function SUM
public static final Aggregate.Function AVERAGE
public static final Aggregate.Function MIN
public static final Aggregate.Function MAX
public static final Aggregate.Function MULTISET
public static Aggregate.Function[] values()
for (Aggregate.Function c : Aggregate.Function.values()) System.out.println(c);
public static Aggregate.Function valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static Aggregate.Function fromValue(String v)
Copyright © 2014 University of Tartu. All Rights Reserved.