public static enum Aggregate.Function extends Enum<Aggregate.Function> implements StringValue<Aggregate.Function>
| Enum Constant and Description |
|---|
AVERAGE |
COUNT |
MAX |
MIN |
MULTISET |
SUM |
| Modifier and Type | Method and Description |
|---|---|
static Aggregate.Function |
fromValue(String v) |
String |
toString() |
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()
value in interface StringValue<Aggregate.Function>public static Aggregate.Function fromValue(String v)
public String toString()
toString in class Enum<Aggregate.Function>Copyright © 2024. All rights reserved.