com.esri.arcgis.datasourcesraster
Interface IRemapFunctionArguments

All Superinterfaces:
java.io.Serializable
All Known Subinterfaces:
IRemapFunctionArguments2
All Known Implementing Classes:
IRemapFunctionArguments2Proxy, IRemapFunctionArgumentsProxy, RemapFunctionArguments

public interface IRemapFunctionArguments
extends java.io.Serializable

COM Interface 'IRemapFunctionArguments'. Generated 3/19/2015 1:20:55 PM from 'C:\ArcGIS\COM\esriDataSourcesRaster.olb'

Description: 'Provides access to members that control remap function arguments.' 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 IID6997f806_48be_4f4b_afcc_f2d765541cdd
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 java.lang.String getInputField()
          The field in the Attribute table that contains (minimum) pixel values.
 IDoubleArray getInputRanges()
          The collection of min-max value pairs indicating input remap classes.
 IDoubleArray getNoDataRanges()
          The collection of min-max value pairs indicating NoData.
 java.lang.String getOutputField()
          The field in the attribute table containing the remapped values.
 IDoubleArray getOutputValues()
          The collection of output values to which each input value pair in the 'InputRanges' collection is remapped.
 java.lang.Object getRaster()
          The source raster object.
 ITable getTable()
          The table used to lookup pixel values.
 boolean isAllowUnmatched()
          Indicates if unmatched values should be passed through.
 boolean isUseTable()
          Indicates if the attribute table should be used for remapping.
 void setAllowUnmatched(boolean pbAllowUnmatched)
          Indicates if unmatched values should be passed through.
 void setInputField(java.lang.String pInputField)
          The field in the Attribute table that contains (minimum) pixel values.
 void setInputRangesByRef(IDoubleArray ppInputRanges)
          The collection of min-max value pairs indicating input remap classes.
 void setNoDataRangesByRef(IDoubleArray ppNoDataRanges)
          The collection of min-max value pairs indicating NoData.
 void setOutputField(java.lang.String pOutputField)
          The field in the attribute table containing the remapped values.
 void setOutputValuesByRef(IDoubleArray ppOutputValues)
          The collection of output values to which each input value pair in the 'InputRanges' collection is remapped.
 void setRasterByRef(java.lang.Object ppRaster)
          The source raster object.
 void setTableByRef(ITable ppTable)
          The table used to lookup pixel values.
 void setUseTable(boolean pbUseTable)
          Indicates if the attribute table should be used for remapping.
 

Field Detail

IID6997f806_48be_4f4b_afcc_f2d765541cdd

static final int IID6997f806_48be_4f4b_afcc_f2d765541cdd
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

getRaster

java.lang.Object getRaster()
                           throws java.io.IOException,
                                  AutomationException
The source raster object.

Returns:
A reference to another Object (IUnknown)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setRasterByRef

void setRasterByRef(java.lang.Object ppRaster)
                    throws java.io.IOException,
                           AutomationException
The source raster object.

Parameters:
ppRaster - A reference to another Object (IUnknown) (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

isAllowUnmatched

boolean isAllowUnmatched()
                         throws java.io.IOException,
                                AutomationException
Indicates if unmatched values should be passed through.

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

setAllowUnmatched

void setAllowUnmatched(boolean pbAllowUnmatched)
                       throws java.io.IOException,
                              AutomationException
Indicates if unmatched values should be passed through.

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

isUseTable

boolean isUseTable()
                   throws java.io.IOException,
                          AutomationException
Indicates if the attribute table should be used for remapping.

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

setUseTable

void setUseTable(boolean pbUseTable)
                 throws java.io.IOException,
                        AutomationException
Indicates if the attribute table should be used for remapping.

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

getInputField

java.lang.String getInputField()
                               throws java.io.IOException,
                                      AutomationException
The field in the Attribute table that contains (minimum) pixel values.

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

setInputField

void setInputField(java.lang.String pInputField)
                   throws java.io.IOException,
                          AutomationException
The field in the Attribute table that contains (minimum) pixel values.

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

getOutputField

java.lang.String getOutputField()
                                throws java.io.IOException,
                                       AutomationException
The field in the attribute table containing the remapped values.

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

setOutputField

void setOutputField(java.lang.String pOutputField)
                    throws java.io.IOException,
                           AutomationException
The field in the attribute table containing the remapped values.

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

getTable

ITable getTable()
                throws java.io.IOException,
                       AutomationException
The table used to lookup pixel values.

Returns:
A reference to a com.esri.arcgis.geodatabase.ITable
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setTableByRef

void setTableByRef(ITable ppTable)
                   throws java.io.IOException,
                          AutomationException
The table used to lookup pixel values.

Parameters:
ppTable - A reference to a com.esri.arcgis.geodatabase.ITable (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getInputRanges

IDoubleArray getInputRanges()
                            throws java.io.IOException,
                                   AutomationException
The collection of min-max value pairs indicating input remap classes. Pixel values of the input raster in the range [min,max) are mapped to the corresponding value in the 'OutputValues' collection.

Returns:
A reference to a com.esri.arcgis.system.IDoubleArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setInputRangesByRef

void setInputRangesByRef(IDoubleArray ppInputRanges)
                         throws java.io.IOException,
                                AutomationException
The collection of min-max value pairs indicating input remap classes. Pixel values of the input raster in the range [min,max) are mapped to the corresponding value in the 'OutputValues' collection.

Parameters:
ppInputRanges - A reference to a com.esri.arcgis.system.IDoubleArray (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getOutputValues

IDoubleArray getOutputValues()
                             throws java.io.IOException,
                                    AutomationException
The collection of output values to which each input value pair in the 'InputRanges' collection is remapped.

Returns:
A reference to a com.esri.arcgis.system.IDoubleArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setOutputValuesByRef

void setOutputValuesByRef(IDoubleArray ppOutputValues)
                          throws java.io.IOException,
                                 AutomationException
The collection of output values to which each input value pair in the 'InputRanges' collection is remapped.

Parameters:
ppOutputValues - A reference to a com.esri.arcgis.system.IDoubleArray (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getNoDataRanges

IDoubleArray getNoDataRanges()
                             throws java.io.IOException,
                                    AutomationException
The collection of min-max value pairs indicating NoData. Pixel values of the input raster in the range [min,max) are set as NoData.

Returns:
A reference to a com.esri.arcgis.system.IDoubleArray
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setNoDataRangesByRef

void setNoDataRangesByRef(IDoubleArray ppNoDataRanges)
                          throws java.io.IOException,
                                 AutomationException
The collection of min-max value pairs indicating NoData. Pixel values of the input raster in the range [min,max) are set as NoData.

Parameters:
ppNoDataRanges - A reference to a com.esri.arcgis.system.IDoubleArray (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.