com.esri.arcgis.datasourcesraster
Interface IDescTable

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IDescTableProxy

public interface IDescTable
extends java.io.Serializable

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 =


Field Summary
static java.lang.String IID
          Deprecated. Internal use only
static int IIDd777c1a0_f41a_11d2_80a7_00500462e955
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addColumn(int col_index, IDescColumn col)
          Adds a column to the descriptor table.
 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.
 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.
 

Field Detail

IIDd777c1a0_f41a_11d2_80a7_00500462e955

static final int IIDd777c1a0_f41a_11d2_80a7_00500462e955
See Also:
Constant Field Values

xxDummy

static final int xxDummy
Deprecated. Internal use only
See Also:
Constant Field Values

IID

static final java.lang.String IID
Deprecated. Internal use only
See Also:
Constant Field Values
Method Detail

getNumFields

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

Returns:
The pVal
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

fieldDesc

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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