Module com.esri.arcgisruntime
Enum Class AggregateStatisticType
java.lang.Object
java.lang.Enum<AggregateStatisticType>
com.esri.arcgisruntime.mapping.reduction.AggregateStatisticType
- All Implemented Interfaces:
Serializable
,Comparable<AggregateStatisticType>
,Constable
The list of possible statistic types that can be used for aggregating geoelements.
Defines the type of statistic for summarizing values returned from the AggregateField.statisticFieldNameProperty()
or
AggregateField.statisticExpressionProperty()
for geoelements in an AggregateGeoElement
.
- Since:
- 200.3.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe average of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The count of geoelements in anAggregateGeoElement
.The largest value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The smallest value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The most frequently occurring value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The standard deviation of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The sum of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.The variance of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
. -
Method Summary
Modifier and TypeMethodDescriptionstatic AggregateStatisticType
Returns the enum constant of this class with the specified name.static AggregateStatisticType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
COUNT
The count of geoelements in anAggregateGeoElement
.- Since:
- 200.3.0
-
AVERAGE
The average of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
MAX
The largest value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
MIN
The smallest value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
MODE
The most frequently occurring value in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
STANDARD_DEVIATION
The standard deviation of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
SUM
The sum of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
VARIANCE
The variance of values in theAggregateField.statisticFieldNameProperty()
orAggregateField.statisticExpressionProperty()
.- Since:
- 200.3.0
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-