com.esri.arcgis.geoanalyst
Class GeoAnalysisSemiVariogram

java.lang.Object
  extended bycom.esri.arcgis.geoanalyst.GeoAnalysisSemiVariogram
All Implemented Interfaces:
IGeoAnalysisSemiVariogram, ISupportErrorInfo, java.io.Serializable

public class GeoAnalysisSemiVariogram
extends java.lang.Object
implements IGeoAnalysisSemiVariogram, ISupportErrorInfo

ESRI GeoAnalysis SemiVariogram object.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

See Also:
Serialized Form

Constructor Summary
GeoAnalysisSemiVariogram()
          Constructs a GeoAnalysisSemiVariogram using ArcGIS Engine.
GeoAnalysisSemiVariogram(java.lang.Object obj)
          Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.
 
Method Summary
 void defineVariogram(int type, double aRange, double sill, double aNugget)
          Define Variogram.
 boolean equals(java.lang.Object o)
          Compare this object with another
 IGeoAnalysisSemiVariogram getAsIGeoAnalysisSemiVariogram()
          Deprecated. No replacement. The object reference can be directly used where the implemented interface is needed.
 ISupportErrorInfo getAsISupportErrorInfo()
          Deprecated. No replacement. The object reference can be directly used where the implemented interface is needed.
static java.lang.String getClsid()
           
 double getLag()
          Lag value.
 double getNugget()
          Nugget value.
 double getPartialSill()
          Partial Sill value.
 double getRange()
          Range value.
 int getVariogramType()
          Variogram Type.
 int hashCode()
          the hashcode for this object
 void interfaceSupportsErrorInfo(GUID riid)
          Supported Platforms
 void setLag(double lag)
          Lag value.
 void setVariogramType(int type)
          Variogram Type.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

GeoAnalysisSemiVariogram

public GeoAnalysisSemiVariogram()
                         throws java.io.IOException,
                                java.net.UnknownHostException
Constructs a GeoAnalysisSemiVariogram using ArcGIS Engine.

Throws:
java.io.IOException - if there are interop problems
java.net.UnknownHostException - if there are interop problems

GeoAnalysisSemiVariogram

public GeoAnalysisSemiVariogram(java.lang.Object obj)
                         throws java.io.IOException
Deprecated. As of ArcGIS 9.2, replaced by normal Java casts.

Construct a GeoAnalysisSemiVariogram using a reference to such an object returned from ArcGIS Engine or Server. This is semantically equivalent to casting obj to GeoAnalysisSemiVariogram.
GeoAnalysisSemiVariogram theGeoAnalysisSemiVariogram = (GeoAnalysisSemiVariogram) obj;

Parameters:
obj - an object returned from ArcGIS Engine or Server
Throws:
java.io.IOException - if there are interop problems
Method Detail

getClsid

public static java.lang.String getClsid()

getAsIGeoAnalysisSemiVariogram

public IGeoAnalysisSemiVariogram getAsIGeoAnalysisSemiVariogram()
Deprecated. No replacement. The object reference can be directly used where the implemented interface is needed.


getAsISupportErrorInfo

public ISupportErrorInfo getAsISupportErrorInfo()
Deprecated. No replacement. The object reference can be directly used where the implemented interface is needed.


equals

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


hashCode

public int hashCode()
the hashcode for this object


defineVariogram

public void defineVariogram(int type,
                            double aRange,
                            double sill,
                            double aNugget)
                     throws java.io.IOException,
                            AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Define Variogram.

Supported Platforms

Windows, Solaris, Linux

Specified by:
defineVariogram in interface IGeoAnalysisSemiVariogram
Parameters:
type - A com.esri.arcgis.geoanalyst.esriGeoAnalysisSemiVariogramEnum constant (in)
aRange - The aRange (in)
sill - The sill (in)
aNugget - The aNugget (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

setVariogramType

public void setVariogramType(int type)
                      throws java.io.IOException,
                             AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Variogram Type.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setVariogramType in interface IGeoAnalysisSemiVariogram
Parameters:
type - A com.esri.arcgis.geoanalyst.esriGeoAnalysisSemiVariogramEnum constant (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getVariogramType

public int getVariogramType()
                     throws java.io.IOException,
                            AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Variogram Type.

Supported Platforms

Windows, Solaris, Linux

Specified by:
getVariogramType in interface IGeoAnalysisSemiVariogram
Returns:
A com.esri.arcgis.geoanalyst.esriGeoAnalysisSemiVariogramEnum constant
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.

getRange

public double getRange()
                throws java.io.IOException,
                       AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Range value.

Supported Platforms

Windows, Solaris, Linux

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

getNugget

public double getNugget()
                 throws java.io.IOException,
                        AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Nugget value.

Supported Platforms

Windows, Solaris, Linux

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

getPartialSill

public double getPartialSill()
                      throws java.io.IOException,
                             AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Partial Sill value.

Supported Platforms

Windows, Solaris, Linux

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

setLag

public void setLag(double lag)
            throws java.io.IOException,
                   AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Lag value.

Supported Platforms

Windows, Solaris, Linux

Specified by:
setLag in interface IGeoAnalysisSemiVariogram
Parameters:
lag - The lag (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getLag

public double getLag()
              throws java.io.IOException,
                     AutomationException
Description copied from interface: IGeoAnalysisSemiVariogram
Lag value.

Supported Platforms

Windows, Solaris, Linux

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

interfaceSupportsErrorInfo

public void interfaceSupportsErrorInfo(GUID riid)
                                throws java.io.IOException,
                                       AutomationException
Description copied from interface: ISupportErrorInfo

Supported Platforms

Windows, Solaris, Linux

Description

Indicates whether the interface supports IErrorInfo.

Specified by:
interfaceSupportsErrorInfo in interface ISupportErrorInfo
Parameters:
riid - A Structure: com.esri.arcgis.support.ms.stdole.GUID (in)
Throws:
AutomationException - If the ArcObject component throws an exception.
java.io.IOException - If there are interop problems.