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