com.esri.arcgis.datasourcesraster
Class IBinFunctionProxy

java.lang.Object
  extended by com.esri.arcgis.interop.Dispatch
      extended by com.esri.arcgis.datasourcesraster.IBinFunctionProxy
All Implemented Interfaces:
IBinFunction, Externalizable, Serializable

public class IBinFunctionProxy
extends com.esri.arcgis.interop.Dispatch
implements IBinFunction, Serializable

Provides access to members that control a raster histogram bin function.

Superseded By

IBinFunction2

Remarks

This interface is not intended to use by outside developers.

Product Availability

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

See Also:
Serialized Form

Field Summary
 boolean noncastable
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
 
Constructor Summary
  IBinFunctionProxy()
           
  IBinFunctionProxy(Object obj)
           
protected IBinFunctionProxy(Object obj, String iid)
           
 
Method Summary
 void addListener(String iidStr, Object theListener, Object theSource)
           
 int getNumBins()
          Number of bins (same as rows in table).
 void invert(int bin, double[] upper, double[] lower)
          Returns upper and lower limits of bin.
 void removeListener(String iidStr, Object theListener)
           
 void title(String[] title)
          Name of bin function.
 int valueToIndex(double pixval)
          Converts pixel values to columns in the descriptor table.
 
Methods inherited from class com.esri.arcgis.interop.Dispatch
bindUsingMoniker, constructVtblPosTable, convertToNative, cookieForListener, createDispatch, createObjrefMonikerDisplayName, equals, getActiveObject, getActiveObject, getDefaultProperty, getDispatchIdOfName, getLastErrorCode, getMtsObjectContext, getObjRef, getPropertyByName, getPropertyByName, getVtblPos, hashCode, initDispatch, invoke, invokeMethodByName, invokeMethodByName, invokeMethodByName, invokePropertyGetByName, invokePropertyPutByName, invokePropertyPutByRefByName, isNativeMode, isObjRef, optimizedVtblInvoke, queryInterface, readExternal, release, setNativeMode, setPropertyByName, toString, vtblInvoke, writeExternal
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

noncastable

public boolean noncastable
Constructor Detail

IBinFunctionProxy

public IBinFunctionProxy()

IBinFunctionProxy

public IBinFunctionProxy(Object obj)
                  throws IOException
Throws:
IOException

IBinFunctionProxy

protected IBinFunctionProxy(Object obj,
                            String iid)
                     throws IOException
Throws:
IOException
Method Detail

addListener

public void addListener(String iidStr,
                        Object theListener,
                        Object theSource)
                 throws IOException
Overrides:
addListener in class com.esri.arcgis.interop.Dispatch
Throws:
IOException

removeListener

public void removeListener(String iidStr,
                           Object theListener)
                    throws IOException
Overrides:
removeListener in class com.esri.arcgis.interop.Dispatch
Throws:
IOException

getNumBins

public int getNumBins()
               throws IOException,
                      AutomationException
Number of bins (same as rows in table).

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
getNumBins in interface IBinFunction
Returns:
The pVal
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

valueToIndex

public int valueToIndex(double pixval)
                 throws IOException,
                        AutomationException
Converts pixel values to columns in the descriptor table.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
valueToIndex in interface IBinFunction
Parameters:
pixval - The pixval (in)
Returns:
The row_index
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

invert

public void invert(int bin,
                   double[] upper,
                   double[] lower)
            throws IOException,
                   AutomationException
Returns upper and lower limits of bin.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
invert in interface IBinFunction
Parameters:
bin - The bin (in)
upper - The upper (out: use single element array)
lower - The lower (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

title

public void title(String[] title)
           throws IOException,
                  AutomationException
Name of bin function.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Specified by:
title in interface IBinFunction
Parameters:
title - The title (out: use single element array)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.