com.esri.arcgis.geodatabaseextensions
Class TerrainFieldStatistics

java.lang.Object
  extended by com.esri.arcgis.geodatabaseextensions.TerrainFieldStatistics
All Implemented Interfaces:
ITerrainFieldStatistics, com.esri.arcgis.interop.RemoteObjRef, java.io.Serializable

public class TerrainFieldStatistics
extends java.lang.Object
implements com.esri.arcgis.interop.RemoteObjRef, ITerrainFieldStatistics

COM Class 'TerrainFieldStatistics'. Generated 3/19/2015 1:20:49 PM from 'C:\ArcGIS\COM\esriGeoDatabaseExtensions.olb'

Description 'Esri TerrainFieldStatistics object.' 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 =

See Also:
Serialized Form

Field Summary
 
Fields inherited from interface com.esri.arcgis.geodatabaseextensions.ITerrainFieldStatistics
IID, IID3f30b349_518b_41fa_9f2e_e00d6f81af82, xxDummy
 
Constructor Summary
TerrainFieldStatistics(java.lang.Object obj)
          Construct a TerrainFieldStatistics using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(java.lang.Object o)
          Compare this object with another
 double getCount()
          The number of elements.
 java.lang.String getFieldName()
          The field name associated with the statistics.
 com.esri.arcgis.interop.Dispatch getJintegraDispatch()
          Deprecated. Internal use only.
 double getMaximum()
          The maximum value.
 double getMean()
          The mean value.
 double getMinimum()
          The minimum value.
 double getStandardDeviation()
          The standard deviation.
 IDoubleArray getUniqueValueCounts()
          Returns the number of unique values.
 IDoubleArray getUniqueValuesAsDouble()
          Returns the unique values.
 ILongArray getUniqueValuesAsLong()
          Returns the unique values.
 int getUniqueValueType()
          Returns esriTerrainLong for integer-type data (except for unsigned long), and esriTerrainDouble for unsigned long and floating point data.
 int hashCode()
          the hashcode for this object
 boolean isEmpty()
          Indicates if the object is empty.
 boolean isNeedsUpdate()
          Indicates if update is necessary.
 void release()
          Release a TerrainFieldStatistics.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TerrainFieldStatistics

public TerrainFieldStatistics(java.lang.Object obj)
                       throws java.io.IOException
Construct a TerrainFieldStatistics using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to TerrainFieldStatistics.
Casting to this class from the return value of a method will not work, as this class represents an abstract class in ArcObjects.
*
TerrainFieldStatistics o = (TerrainFieldStatistics)obj; // will not work

TerrainFieldStatistics o = new TerrainFieldStatistics(obj); // Use this constructor instead
* @param obj an object returned from ArcGIS Engine or Server

Throws:
java.io.IOException - if there are interop problems TerrainFieldStatistics theTerrainFieldStatistics = (TerrainFieldStatistics) obj;
Method Detail

equals

public boolean equals(java.lang.Object o)
Compare this object with another

Overrides:
equals in class java.lang.Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class java.lang.Object

getJintegraDispatch

public com.esri.arcgis.interop.Dispatch getJintegraDispatch()
Deprecated. Internal use only.

Specified by:
getJintegraDispatch in interface com.esri.arcgis.interop.RemoteObjRef

release

public void release()
Release a TerrainFieldStatistics.

Specified by:
release in interface com.esri.arcgis.interop.RemoteObjRef

isEmpty

public boolean isEmpty()
                throws java.io.IOException,
                       AutomationException
Indicates if the object is empty.

Specified by:
isEmpty in interface ITerrainFieldStatistics
Returns:
The pbIsEmpty
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isNeedsUpdate

public boolean isNeedsUpdate()
                      throws java.io.IOException,
                             AutomationException
Indicates if update is necessary.

Specified by:
isNeedsUpdate in interface ITerrainFieldStatistics
Returns:
The pbNeedsUpdate
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getFieldName

public java.lang.String getFieldName()
                              throws java.io.IOException,
                                     AutomationException
The field name associated with the statistics.

Specified by:
getFieldName in interface ITerrainFieldStatistics
Returns:
The pName
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCount

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

Specified by:
getCount in interface ITerrainFieldStatistics
Returns:
The pCount
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMinimum

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

Specified by:
getMinimum in interface ITerrainFieldStatistics
Returns:
The pMinimum
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMaximum

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

Specified by:
getMaximum in interface ITerrainFieldStatistics
Returns:
The pMaximum
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getMean

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

Specified by:
getMean in interface ITerrainFieldStatistics
Returns:
The pMean
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getStandardDeviation

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

Specified by:
getStandardDeviation in interface ITerrainFieldStatistics
Returns:
The pStandardDeviation
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getUniqueValueType

public int getUniqueValueType()
                       throws java.io.IOException,
                              AutomationException
Returns esriTerrainLong for integer-type data (except for unsigned long), and esriTerrainDouble for unsigned long and floating point data.

Specified by:
getUniqueValueType in interface ITerrainFieldStatistics
Returns:
A com.esri.arcgis.geodatabaseextensions.esriTerrainBlobDataType constant
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getUniqueValuesAsLong

public ILongArray getUniqueValuesAsLong()
                                 throws java.io.IOException,
                                        AutomationException
Returns the unique values.

Specified by:
getUniqueValuesAsLong in interface ITerrainFieldStatistics
Returns:
A reference to a com.esri.arcgis.system.ILongArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getUniqueValuesAsDouble

public IDoubleArray getUniqueValuesAsDouble()
                                     throws java.io.IOException,
                                            AutomationException
Returns the unique values.

Specified by:
getUniqueValuesAsDouble in interface ITerrainFieldStatistics
Returns:
A reference to a com.esri.arcgis.system.IDoubleArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getUniqueValueCounts

public IDoubleArray getUniqueValueCounts()
                                  throws java.io.IOException,
                                         AutomationException
Returns the number of unique values.

Specified by:
getUniqueValueCounts in interface ITerrainFieldStatistics
Returns:
A reference to a com.esri.arcgis.system.IDoubleArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.