com.esri.arcgis.system
Interface IGenerateStatistics

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
BaseStatistics, IGenerateStatisticsProxy

public interface IGenerateStatistics
extends java.io.Serializable

COM Interface 'IGenerateStatistics'. Generated 3/19/2015 1:21:00 PM from 'C:\ArcGIS\COM\esriSystem.olb'

Description: 'Provides access to members used for generating statistics.' Generator Options: PromptForTypeLibraries = False ClashPrefix = esri_ LowerCaseMemberNames = True IDispatchOnly = False RetryOnReject = False AwtForOcxs = True ArraysAsObjects = False DontRenameSameMethods = False ImplementConflictingInterfaces = True ReuseMethods = True RenameConflictingInterfaceMethods = True GenBeanInfo = True GenerateJavadoc =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDb9c43589_78b8_11d2_ae60_080009ec732a
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addValue(double value)
          Adds a data value to the collection of values used to derive the statistics.
 void finalCompute()
          May be called after all values have been added to establish frequeny table (the function is not required any more).
 void reset(boolean simpleStats)
          Clears out the currently gathered statistics.
 void setSample(boolean rhs1)
          Indicates if the statistics represent a sample of the data (used for calculating standard deviation).
 void setSimpleStats(boolean rhs1)
          Indicates if simple statistics are sufficient.
 

Field Detail

IIDb9c43589_78b8_11d2_ae60_080009ec732a

static final int IIDb9c43589_78b8_11d2_ae60_080009ec732a
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

setSimpleStats

void setSimpleStats(boolean rhs1)
                    throws java.io.IOException,
                           AutomationException
Indicates if simple statistics are sufficient. These are Count, Minimum, Maximum, Sum, Mean, Standard Deviation.

Parameters:
rhs1 - The rhs1 (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setSample

void setSample(boolean rhs1)
               throws java.io.IOException,
                      AutomationException
Indicates if the statistics represent a sample of the data (used for calculating standard deviation).

Parameters:
rhs1 - The rhs1 (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

reset

void reset(boolean simpleStats)
           throws java.io.IOException,
                  AutomationException
Clears out the currently gathered statistics.

Parameters:
simpleStats - The simpleStats (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addValue

void addValue(double value)
              throws java.io.IOException,
                     AutomationException
Adds a data value to the collection of values used to derive the statistics.

Parameters:
value - The value (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

finalCompute

void finalCompute()
                  throws java.io.IOException,
                         AutomationException
May be called after all values have been added to establish frequeny table (the function is not required any more).

Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.