public interface IRemapFilter
extends java.io.Serializable
Description: 'Provides access to members that control a remap filter.' 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 =
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
IID
Deprecated.
Internal use only
|
static int |
IID2f07be89_35d7_4cf3_be0d_2f13e56948f0 |
static int |
xxDummy
Deprecated.
Internal use only
|
Modifier and Type | Method and Description |
---|---|
void |
addClass(double minvalue,
double maxvalue,
double newvalue)
Adds a remap class that remaps values in [minvalue,maxvalue) to a give new value.
|
void |
addNoDataClass(double minvalue,
double maxvalue)
Adds a remap class that remaps values in [minvalue,maxvalue) to NoData.
|
void |
empty()
Removes all classes.
|
int |
getClassCount()
The number of remapped classes.
|
boolean |
isAllowUnmatched()
Indicates if unmatched values should be passed through.
|
void |
putClass(int index,
double minvalue,
double maxvalue,
double newvalue)
Puts a remap class at a given class index (starting from 0).
|
void |
queryClass(int index,
double[] minvalue,
double[] maxvalue,
double[] newvalue)
Queries a remap class at a given class index (starting from 0).
|
void |
setAllowUnmatched(boolean pAllowUnmatched)
Indicates if unmatched values should be passed through.
|
static final int IID2f07be89_35d7_4cf3_be0d_2f13e56948f0
static final int xxDummy
static final java.lang.String IID
int getClassCount() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void addClass(double minvalue, double maxvalue, double newvalue) throws java.io.IOException, AutomationException
minvalue
- The minvalue (in)maxvalue
- The maxvalue (in)newvalue
- The newvalue (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void addNoDataClass(double minvalue, double maxvalue) throws java.io.IOException, AutomationException
minvalue
- The minvalue (in)maxvalue
- The maxvalue (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void queryClass(int index, double[] minvalue, double[] maxvalue, double[] newvalue) throws java.io.IOException, AutomationException
index
- The index (in)minvalue
- The minvalue (out: use single element array)maxvalue
- The maxvalue (out: use single element array)newvalue
- The newvalue (out: use single element array)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void putClass(int index, double minvalue, double maxvalue, double newvalue) throws java.io.IOException, AutomationException
index
- The index (in)minvalue
- The minvalue (in)maxvalue
- The maxvalue (in)newvalue
- The newvalue (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void empty() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.boolean isAllowUnmatched() throws java.io.IOException, AutomationException
java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.void setAllowUnmatched(boolean pAllowUnmatched) throws java.io.IOException, AutomationException
pAllowUnmatched
- The pAllowUnmatched (in)java.io.IOException
- If there are interop problems.AutomationException
- If the ArcObject component throws an exception.