@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public enum AggType extends Enum<AggType>
Enum Constant and Description |
---|
AVERAGE |
COLUMN |
COUNT |
CUSTOM |
DISTINCT_COUNT |
MAX |
MEDIAN |
MIN |
PERCENTILE |
PTD_AVERAGE |
PTD_COUNT |
PTD_DISTINCT_COUNT |
PTD_MAX |
PTD_MIN |
PTD_SUM |
STDEV |
STDEVP |
SUM |
VAR |
VARP |
Modifier and Type | Method and Description |
---|---|
static AggType |
fromValue(String value)
Use this in place of valueOf.
|
String |
toString() |
static AggType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AggType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AggType SUM
public static final AggType MIN
public static final AggType MAX
public static final AggType COUNT
public static final AggType AVERAGE
public static final AggType DISTINCT_COUNT
public static final AggType STDEV
public static final AggType STDEVP
public static final AggType VAR
public static final AggType VARP
public static final AggType PERCENTILE
public static final AggType MEDIAN
public static final AggType PTD_SUM
public static final AggType PTD_MIN
public static final AggType PTD_MAX
public static final AggType PTD_COUNT
public static final AggType PTD_DISTINCT_COUNT
public static final AggType PTD_AVERAGE
public static final AggType COLUMN
public static final AggType CUSTOM
public static AggType[] values()
for (AggType c : AggType.values()) System.out.println(c);
public static AggType 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 static AggType fromValue(String value)
value
- real valueIllegalArgumentException
- If the specified value does not map to one of the known values in this enum.