Package com.esri.arcgisruntime.data
Class StatisticRecord
- java.lang.Object
-
- com.esri.arcgisruntime.data.StatisticRecord
-
public final class StatisticRecord extends Object
Represents the statistic value for a particular field.- Since:
- 100.2.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<String,Object>
getGroup()
Gets the statistics for a SQL Group By fields (if any were specified) and their associated values.Map<String,Object>
getStatistics()
Gets the statistics of the query result.
-
-
-
Method Detail
-
getStatistics
public Map<String,Object> getStatistics()
Gets the statistics of the query result. The keys are field output alias, the values are either long or string value.- Returns:
- statistics values returned in the query result
- Since:
- 100.2.0
-
getGroup
public Map<String,Object> getGroup()
Gets the statistics for a SQL Group By fields (if any were specified) and their associated values. The type of value depends on the type of the Group By field.- Returns:
- the the statistic for the Group By fields (if any were specified) and their associated values.
- Since:
- 100.2.0
-
-