com.esri.arcgis.geodatabaseextensions
Interface ISimpleStatistics

All Superinterfaces:
Serializable
All Known Implementing Classes:
LasAttributeStatistics

public interface ISimpleStatistics
extends Serializable

Provides access to Statistics.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 double getCount()
          The number of elements.
 Object getDataType()
          Returns data type (defined by VARIANT::vt)
 double getMaximum()
          The maximum value.
 double getMean()
          The mean value.
 double getMinimum()
          The minimum value.
 double getStandardDeviation()
          The standard deviation.
 

Method Detail

getDataType

Object getDataType()
                   throws IOException,
                          AutomationException
Returns data type (defined by VARIANT::vt)

Description

The numeric type of the attribute (i.e., long, float, double, etc.) the statistics are based.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
A Variant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCount

double getCount()
                throws IOException,
                       AutomationException
The number of elements.

Description


The number of elements used to calculate the statistics.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pCount
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMinimum

double getMinimum()
                  throws IOException,
                         AutomationException
The minimum value.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pMinimum
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMaximum

double getMaximum()
                  throws IOException,
                         AutomationException
The maximum value.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pMaximum
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMean

double getMean()
               throws IOException,
                      AutomationException
The mean value.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pMean
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getStandardDeviation

double getStandardDeviation()
                            throws IOException,
                                   AutomationException
The standard deviation.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pStandardDeviation
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.