com.esri.arcgis.geodatabaseextensions
Class LasAttributeStatistics

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

public class LasAttributeStatistics
extends java.lang.Object
implements com.esri.arcgis.interop.RemoteObjRef, ISimpleStatistics

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

Description 'Esri LasAttributeStatistics 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.ISimpleStatistics
IID, IIDcf4000ec_9418_4da3_9c2d_931ace25889c, xxDummy
 
Constructor Summary
LasAttributeStatistics(java.lang.Object obj)
          Construct a LasAttributeStatistics 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.Object getDataType()
          Returns data type (defined by VARIANT::vt)
 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.
 int hashCode()
          the hashcode for this object
 void release()
          Release a LasAttributeStatistics.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

LasAttributeStatistics

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

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

Throws:
java.io.IOException - if there are interop problems LasAttributeStatistics theLasAttributeStatistics = (LasAttributeStatistics) 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 LasAttributeStatistics.

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

getDataType

public java.lang.Object getDataType()
                             throws java.io.IOException,
                                    AutomationException
Returns data type (defined by VARIANT::vt)

Specified by:
getDataType in interface ISimpleStatistics
Returns:
A Variant
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 ISimpleStatistics
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 ISimpleStatistics
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 ISimpleStatistics
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 ISimpleStatistics
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 ISimpleStatistics
Returns:
The pStandardDeviation
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.