com.esri.arcgis.datasourcesraster
Class IDescTableProxy

java.lang.Object
  extended by com.esri.arcgis.interop.Dispatch
      extended by com.esri.arcgis.datasourcesraster.IDescTableProxy
All Implemented Interfaces:
IDescTable, java.io.Externalizable, java.io.Serializable

public class IDescTableProxy
extends com.esri.arcgis.interop.Dispatch
implements IDescTable, java.io.Serializable

Internal use class Proxy for COM Interface 'IDescTable'. Generated 3/19/2015 1:20:54 PM from 'C:\ArcGIS\COM\esriDataSourcesRaster.olb'

Description: 'Provides access to members that control a descriptor table.' 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
 boolean noncastable
           
static java.lang.Class targetClass
           
 
Fields inherited from class com.esri.arcgis.interop.Dispatch
DISPATCH_METHOD, DISPATCH_PROPERTYGET, DISPATCH_PROPERTYPUT, DISPATCH_PROPERTYPUTREF, objRef
 
Fields inherited from interface com.esri.arcgis.datasourcesraster.IDescTable
IID, IIDd777c1a0_f41a_11d2_80a7_00500462e955
 
Constructor Summary
  IDescTableProxy()
          For internal use only
  IDescTableProxy(java.lang.Object obj)
           
protected IDescTableProxy(java.lang.Object obj, java.lang.String iid)
           
  IDescTableProxy(java.lang.String CLSID, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo)
           
protected IDescTableProxy(java.lang.String CLSID, java.lang.String iid, java.lang.String host, com.esri.arcgis.interop.AuthInfo authInfo)
           
 
Method Summary
 void addColumn(int col_index, IDescColumn col)
          Adds a column to the descriptor table.
 void addListener(java.lang.String iidStr, java.lang.Object theListener, java.lang.Object theSource)
           
 void deleteColumn(int col_index)
          Deletes a column from the descriptor table.
 void fieldDesc(int index, java.lang.String[] name, short[] type, int[] width)
          Provides a description of the field.
 int findField(java.lang.String strtofind)
          Finds a field in the descriptor table.
 IBinFunction getBinFunction()
          Pixel to Row tranlator.
 int getNumFields()
          Number of fields in the descriptor table.
 IDescColumn readColumn(int col_index)
          Reads a column from the descriptor table.
 IDescRow readRow(int row_index)
          Returns a row from the the descriptor table.
 void removeListener(java.lang.String iidStr, java.lang.Object theListener)
           
 int valueToIndex(double pixval)
          Converts pixel values to rows in the descriptor table.
 IDescColumn writeColumn(int col_index)
          Writes column to the descriptor table.
 void writeRow(int row_index, IDescRow row)
          Writes row of data to 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

targetClass

public static final java.lang.Class targetClass

noncastable

public boolean noncastable
Constructor Detail

IDescTableProxy

public IDescTableProxy(java.lang.String CLSID,
                       java.lang.String host,
                       com.esri.arcgis.interop.AuthInfo authInfo)
                throws java.net.UnknownHostException,
                       java.io.IOException
Throws:
java.net.UnknownHostException
java.io.IOException

IDescTableProxy

public IDescTableProxy()
For internal use only


IDescTableProxy

public IDescTableProxy(java.lang.Object obj)
                throws java.io.IOException
Throws:
java.io.IOException

IDescTableProxy

protected IDescTableProxy(java.lang.Object obj,
                          java.lang.String iid)
                   throws java.io.IOException
Throws:
java.io.IOException

IDescTableProxy

protected IDescTableProxy(java.lang.String CLSID,
                          java.lang.String iid,
                          java.lang.String host,
                          com.esri.arcgis.interop.AuthInfo authInfo)
                   throws java.io.IOException
Throws:
java.io.IOException
Method Detail

addListener

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

removeListener

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

getNumFields

public int getNumFields()
                 throws java.io.IOException,
                        AutomationException
Number of fields in the descriptor table.

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

fieldDesc

public void fieldDesc(int index,
                      java.lang.String[] name,
                      short[] type,
                      int[] width)
               throws java.io.IOException,
                      AutomationException
Provides a description of the field.

Specified by:
fieldDesc in interface IDescTable
Parameters:
index - The index (in)
name - The name (out: use single element array)
type - The type (out: use single element array)
width - The width (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getBinFunction

public IBinFunction getBinFunction()
                            throws java.io.IOException,
                                   AutomationException
Pixel to Row tranlator.

Specified by:
getBinFunction in interface IDescTable
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IBinFunction
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

valueToIndex

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

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

readRow

public IDescRow readRow(int row_index)
                 throws java.io.IOException,
                        AutomationException
Returns a row from the the descriptor table.

Specified by:
readRow in interface IDescTable
Parameters:
row_index - The row_index (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IDescRow
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeRow

public void writeRow(int row_index,
                     IDescRow row)
              throws java.io.IOException,
                     AutomationException
Writes row of data to the descriptor table.

Specified by:
writeRow in interface IDescTable
Parameters:
row_index - The row_index (in)
row - A reference to a com.esri.arcgis.datasourcesraster.IDescRow (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

readColumn

public IDescColumn readColumn(int col_index)
                       throws java.io.IOException,
                              AutomationException
Reads a column from the descriptor table.

Specified by:
readColumn in interface IDescTable
Parameters:
col_index - The col_index (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IDescColumn
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

writeColumn

public IDescColumn writeColumn(int col_index)
                        throws java.io.IOException,
                               AutomationException
Writes column to the descriptor table.

Specified by:
writeColumn in interface IDescTable
Parameters:
col_index - The col_index (in)
Returns:
A reference to a com.esri.arcgis.datasourcesraster.IDescColumn
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

findField

public int findField(java.lang.String strtofind)
              throws java.io.IOException,
                     AutomationException
Finds a field in the descriptor table.

Specified by:
findField in interface IDescTable
Parameters:
strtofind - The strtofind (in)
Returns:
The pVal
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

addColumn

public void addColumn(int col_index,
                      IDescColumn col)
               throws java.io.IOException,
                      AutomationException
Adds a column to the descriptor table.

Specified by:
addColumn in interface IDescTable
Parameters:
col_index - The col_index (in)
col - A reference to a com.esri.arcgis.datasourcesraster.IDescColumn (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

deleteColumn

public void deleteColumn(int col_index)
                  throws java.io.IOException,
                         AutomationException
Deletes a column from the descriptor table.

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