Enum AggType
- java.lang.Object
-
- java.lang.Enum<AggType>
-
- software.amazon.awssdk.services.quicksight.model.AggType
-
- All Implemented Interfaces:
Serializable,Comparable<AggType>
@Generated("software.amazon.awssdk:codegen") public enum AggType extends Enum<AggType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVERAGECOLUMNCOUNTCUSTOMDISTINCT_COUNTMAXMEDIANMINPERCENTILEPTD_AVERAGEPTD_COUNTPTD_DISTINCT_COUNTPTD_MAXPTD_MINPTD_SUMSTDEVSTDEVPSUMUNKNOWN_TO_SDK_VERSIONVARVARP
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AggTypefromValue(String value)Use this in place of valueOf to convert the raw string returned by the service into the enum value.static Set<AggType>knownValues()StringtoString()static AggTypevalueOf(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.
-
-
-
Enum Constant Detail
-
SUM
public static final AggType SUM
-
MIN
public static final AggType MIN
-
MAX
public static final AggType MAX
-
COUNT
public static final AggType COUNT
-
AVERAGE
public static final AggType AVERAGE
-
DISTINCT_COUNT
public static final AggType DISTINCT_COUNT
-
STDEV
public static final AggType STDEV
-
STDEVP
public static final AggType STDEVP
-
VAR
public static final AggType VAR
-
VARP
public static final AggType VARP
-
PERCENTILE
public static final AggType PERCENTILE
-
MEDIAN
public static final AggType MEDIAN
-
PTD_SUM
public static final AggType PTD_SUM
-
PTD_MIN
public static final AggType PTD_MIN
-
PTD_MAX
public static final AggType PTD_MAX
-
PTD_COUNT
public static final AggType PTD_COUNT
-
PTD_DISTINCT_COUNT
public static final AggType PTD_DISTINCT_COUNT
-
PTD_AVERAGE
public static final AggType PTD_AVERAGE
-
COLUMN
public static final AggType COLUMN
-
CUSTOM
public static final AggType CUSTOM
-
UNKNOWN_TO_SDK_VERSION
public static final AggType UNKNOWN_TO_SDK_VERSION
-
-
Method Detail
-
values
public static AggType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AggType c : AggType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AggType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
fromValue
public static AggType fromValue(String value)
Use this in place of valueOf to convert the raw string returned by the service into the enum value.- Parameters:
value- real value- Returns:
- AggType corresponding to the value
-
-