|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.esri.arcgis.geodatabaseextensions.LasAttributeStatistics
public class LasAttributeStatistics
Esri LasAttributeStatistics object.
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 |
---|
public LasAttributeStatistics(Object obj) throws IOException
obj
to LasAttributeStatistics
. *
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
IOException
- if there are interop problems
LasAttributeStatistics theLasAttributeStatistics = (LasAttributeStatistics) obj;
Method Detail |
---|
public boolean equals(Object o)
equals
in class Object
public int hashCode()
hashCode
in class Object
public Object getDataType() throws IOException, AutomationException
The numeric type of the attribute (i.e., long, float, double, etc.) the statistics are based.
getDataType
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public double getCount() throws IOException, AutomationException
The number of elements used to calculate the statistics.
getCount
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public double getMinimum() throws IOException, AutomationException
getMinimum
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public double getMaximum() throws IOException, AutomationException
getMaximum
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public double getMean() throws IOException, AutomationException
getMean
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.public double getStandardDeviation() throws IOException, AutomationException
getStandardDeviation
in interface ISimpleStatistics
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |