|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface INumberRemap
Provides access to members that control reclassification of numerical data.
Method Summary | |
---|---|
void |
loadNumbersFromASCIIFile(String remapFile)
Loads the information from an ArcGRID ASCII remap file into a remap object. |
void |
loadNumbersFromTable(ITable remapTable,
String outFieldName,
String fromFieldName,
Object toFieldName,
Object mappingFieldName)
Load number remap records from a table object. |
void |
mapRange(double minValue,
double maxValue,
int outputValue)
Maps a range entry to the remap object. |
void |
mapRangeToNoData(double minValue,
double maxValue)
Maps a range entry to nodata. |
void |
mapValue(double value,
int outputValue)
Maps a single value entry to the remap object. |
void |
mapValueToNoData(double value)
Maps a single value entry to nodata. |
void |
queryNumberRecord(int index,
double[] minValue,
double[] maxValue,
int[] outValue,
boolean[] mappedToNoData)
Returns number record information by index. |
void |
queryNumberValue(double inValue,
int[] outValue,
boolean[] isNodata)
Returns the mapped value for a number remap entry. |
Method Detail |
---|
void mapValue(double value, int outputValue) throws IOException, AutomationException
value
- The value (in)outputValue
- The outputValue (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void mapRange(double minValue, double maxValue, int outputValue) throws IOException, AutomationException
minValue
- The minValue (in)maxValue
- The maxValue (in)outputValue
- The outputValue (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void mapValueToNoData(double value) throws IOException, AutomationException
value
- The value (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void mapRangeToNoData(double minValue, double maxValue) throws IOException, AutomationException
minValue
- The minValue (in)maxValue
- The maxValue (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void queryNumberRecord(int index, double[] minValue, double[] maxValue, int[] outValue, boolean[] mappedToNoData) throws IOException, AutomationException
index
- The index (in)minValue
- The minValue (out: use single element array)maxValue
- The maxValue (out: use single element array)outValue
- The outValue (out: use single element array)mappedToNoData
- The mappedToNoData (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void queryNumberValue(double inValue, int[] outValue, boolean[] isNodata) throws IOException, AutomationException
inValue
- The inValue (in)outValue
- The outValue (out: use single element array)isNodata
- The isNodata (out: use single element array)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void loadNumbersFromTable(ITable remapTable, String outFieldName, String fromFieldName, Object toFieldName, Object mappingFieldName) throws IOException, AutomationException
remapTable
- A reference to a com.esri.arcgis.geodatabase.ITable (in)outFieldName
- The outFieldName (in)fromFieldName
- The fromFieldName (in)toFieldName
- A Variant (in, optional, pass null if not required)mappingFieldName
- A Variant (in, optional, pass null if not required)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void loadNumbersFromASCIIFile(String remapFile) throws IOException, AutomationException
remapFile
- The remapFile (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |