@Generated(value="software.amazon.awssdk:codegen") public enum AggFunction extends Enum<AggFunction>
| Enum Constant and Description |
|---|
AVG |
COUNT |
COUNT_DISTINCT |
FIRST |
KURTOSIS |
LAST |
MAX |
MIN |
SKEWNESS |
STDDEV_POP |
STDDEV_SAMP |
SUM |
SUM_DISTINCT |
UNKNOWN_TO_SDK_VERSION |
VAR_POP |
VAR_SAMP |
| Modifier and Type | Method and Description |
|---|---|
static AggFunction |
fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.
|
static Set<AggFunction> |
knownValues()
|
String |
toString() |
static AggFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggFunction AVG
public static final AggFunction COUNT_DISTINCT
public static final AggFunction COUNT
public static final AggFunction FIRST
public static final AggFunction LAST
public static final AggFunction KURTOSIS
public static final AggFunction MAX
public static final AggFunction MIN
public static final AggFunction SKEWNESS
public static final AggFunction STDDEV_SAMP
public static final AggFunction STDDEV_POP
public static final AggFunction SUM
public static final AggFunction SUM_DISTINCT
public static final AggFunction VAR_SAMP
public static final AggFunction VAR_POP
public static final AggFunction UNKNOWN_TO_SDK_VERSION
public static AggFunction[] values()
for (AggFunction c : AggFunction.values()) System.out.println(c);
public static AggFunction 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 toString()
toString in class Enum<AggFunction>public static AggFunction fromValue(String value)
value - real valuepublic static Set<AggFunction> knownValues()
values() to return a Set of all values known to the SDK. This will return
all known enum values except UNKNOWN_TO_SDK_VERSION.Set of known AggFunctionsCopyright © 2023. All rights reserved.