@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AggFunction extends Enum<AggFunction>
Enum Constant and Description |
---|
Avg |
Count |
CountDistinct |
First |
Kurtosis |
Last |
Max |
Min |
Skewness |
Stddev_pop |
Stddev_samp |
Sum |
SumDistinct |
Var_pop |
Var_samp |
Modifier and Type | Method and Description |
---|---|
static AggFunction |
fromValue(String value)
Use this in place of valueOf.
|
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 CountDistinct
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 SumDistinct
public static final AggFunction Var_samp
public static final AggFunction Var_pop
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 valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.