public enum SupportedAggregationFunction extends Enum<SupportedAggregationFunction>
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
static SupportedAggregationFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Optional<SupportedAggregationFunction> |
valueOfIgnoreCase(String functionName) |
static SupportedAggregationFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SupportedAggregationFunction COUNT
public static final SupportedAggregationFunction AVG
public static final SupportedAggregationFunction MIN
public static final SupportedAggregationFunction MAX
public static final SupportedAggregationFunction SUM
public static SupportedAggregationFunction[] values()
for (SupportedAggregationFunction c : SupportedAggregationFunction.values()) System.out.println(c);
public static SupportedAggregationFunction 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 getName()
public static Optional<SupportedAggregationFunction> valueOfIgnoreCase(String functionName)
Copyright © 2021. All rights reserved.