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, Serializable

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

Esri LasAttributeStatistics object.

Product Availability

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

See Also:
Serialized Form

Constructor Summary
LasAttributeStatistics(Object obj)
          Construct a LasAttributeStatistics using a reference to such an object returned from ArcGIS Engine or Server.
 
Method Summary
 boolean equals(Object o)
          Compare this object with another
 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.
 int hashCode()
          the hashcode for this object
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.esri.arcgis.interop.RemoteObjRef
getJintegraDispatch, release
 

Constructor Detail

LasAttributeStatistics

public LasAttributeStatistics(Object obj)
                       throws 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:
IOException - if there are interop problems LasAttributeStatistics theLasAttributeStatistics = (LasAttributeStatistics) obj;
Method Detail

equals

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

Overrides:
equals in class Object

hashCode

public int hashCode()
the hashcode for this object

Overrides:
hashCode in class Object

getDataType

public 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.

Specified by:
getDataType in interface ISimpleStatistics
Returns:
A Variant
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getCount

public 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.

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

getMinimum

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

Product Availability

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

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

getMaximum

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

Product Availability

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

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

getMean

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

Product Availability

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

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

getStandardDeviation

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

Product Availability

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

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