com.esri.arcgis.carto
Interface IRasterRendererClassInfo

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
IRasterRendererClassInfoProxy, RasterClassifyColorRampRenderer, RasterColormapRenderer, RasterStretchColorRampRenderer, RasterUniqueValueRenderer

public interface IRasterRendererClassInfo
extends java.io.Serializable

COM Interface 'IRasterRendererClassInfo'. Generated 3/19/2015 1:20:52 PM from 'C:\ArcGIS\COM\esriCarto.olb'

Description: 'Provides access to members which contain info about renderer classes.' 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 IID0f3e50d0_3194_11d4_a66c_0008c7df8989
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 int getClassCount()
          Number of classes in the renderer.
 java.lang.String getClassificationField()
          Classification field name or an empty string if a table doesn't exist.
 java.lang.String getNormalizationField()
          Normalization field name or an empty string if none.
 boolean isNumericClasses()
          Indicates if the classification field is numeric.
 void queryNumberClass(int classIndex, double[] minValue, double[] maxValue, int[] outValue)
          Information for a number class by index.
 void queryStringClass(int classIndex, java.lang.String[] inValue, int[] outValue)
          Information for a string class by index.
 

Field Detail

IID0f3e50d0_3194_11d4_a66c_0008c7df8989

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

getClassificationField

java.lang.String getClassificationField()
                                        throws java.io.IOException,
                                               AutomationException
Classification field name or an empty string if a table doesn't exist.

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

getNormalizationField

java.lang.String getNormalizationField()
                                       throws java.io.IOException,
                                              AutomationException
Normalization field name or an empty string if none.

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

isNumericClasses

boolean isNumericClasses()
                         throws java.io.IOException,
                                AutomationException
Indicates if the classification field is numeric.

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

getClassCount

int getClassCount()
                  throws java.io.IOException,
                         AutomationException
Number of classes in the renderer.

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

queryNumberClass

void queryNumberClass(int classIndex,
                      double[] minValue,
                      double[] maxValue,
                      int[] outValue)
                      throws java.io.IOException,
                             AutomationException
Information for a number class by index.

Parameters:
classIndex - The classIndex (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)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

queryStringClass

void queryStringClass(int classIndex,
                      java.lang.String[] inValue,
                      int[] outValue)
                      throws java.io.IOException,
                             AutomationException
Information for a string class by index.

Parameters:
classIndex - The classIndex (in)
inValue - The inValue (out: use single element array)
outValue - The outValue (out: use single element array)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.