com.esri.arcgis.carto
Interface IACValueMapRenderer

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
ACValueMapLabelRenderer, ACValueMapRenderer, IACValueMapRendererProxy

public interface IACValueMapRenderer
extends java.io.Serializable

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

Description: 'Provides access to members that control ArcIMS value map renderer.' 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 IIDdd43e233_4b52_4d46_9897_3bfe7638d3e8
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void add(IACSymbol symbol, int range, java.lang.String value, java.lang.String label, java.lang.String lower, java.lang.String upper)
          Adds a value and corresponding symbol to the list.
 void clear()
          Clears all values.
 int getCount()
          Number of unique values used to categorize the data.
 java.lang.String getLabel(int index)
          Label for the specified value.
 java.lang.String getLookupField()
          Field name that is used to categorize features.
 java.lang.String getLower(int index)
          The lower value of the range.
 int getRangeType(int index)
          The type of categorization for the values within the specified field.
 IACSymbol getSymbol(int index)
          Symbol associated with the specified value.
 java.lang.String getUpper(int index)
          The upper value of the range.
 java.lang.String getValue(int index)
          The unique value for the specified field.
 void remove(int index)
          Removes a value.
 void setLabel(int index, java.lang.String label)
          Label for the specified value.
 void setLookupField(java.lang.String lookupField)
          Field name that is used to categorize features.
 void setLower(int index, java.lang.String value)
          The lower value of the range.
 void setRangeType(int index, int range)
          The type of categorization for the values within the specified field.
 void setSymbol(int index, IACSymbol symbol)
          Symbol associated with the specified value.
 void setUpper(int index, java.lang.String value)
          The upper value of the range.
 void setValue(int index, java.lang.String value)
          The unique value for the specified field.
 

Field Detail

IIDdd43e233_4b52_4d46_9897_3bfe7638d3e8

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

getLookupField

java.lang.String getLookupField()
                                throws java.io.IOException,
                                       AutomationException
Field name that is used to categorize features.

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

setLookupField

void setLookupField(java.lang.String lookupField)
                    throws java.io.IOException,
                           AutomationException
Field name that is used to categorize features.

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

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
Number of unique values used to categorize the data.

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

getSymbol

IACSymbol getSymbol(int index)
                    throws java.io.IOException,
                           AutomationException
Symbol associated with the specified value.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.carto.IACSymbol
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setSymbol

void setSymbol(int index,
               IACSymbol symbol)
               throws java.io.IOException,
                      AutomationException
Symbol associated with the specified value.

Parameters:
index - The index (in)
symbol - A reference to a com.esri.arcgis.carto.IACSymbol (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getRangeType

int getRangeType(int index)
                 throws java.io.IOException,
                        AutomationException
The type of categorization for the values within the specified field.

Parameters:
index - The index (in)
Returns:
A com.esri.arcgis.carto.acRangeType constant
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

setRangeType

void setRangeType(int index,
                  int range)
                  throws java.io.IOException,
                         AutomationException
The type of categorization for the values within the specified field.

Parameters:
index - The index (in)
range - A com.esri.arcgis.carto.acRangeType constant (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getValue

java.lang.String getValue(int index)
                          throws java.io.IOException,
                                 AutomationException
The unique value for the specified field.

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

setValue

void setValue(int index,
              java.lang.String value)
              throws java.io.IOException,
                     AutomationException
The unique value for the specified field.

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

getLabel

java.lang.String getLabel(int index)
                          throws java.io.IOException,
                                 AutomationException
Label for the specified value.

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

setLabel

void setLabel(int index,
              java.lang.String label)
              throws java.io.IOException,
                     AutomationException
Label for the specified value.

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

getUpper

java.lang.String getUpper(int index)
                          throws java.io.IOException,
                                 AutomationException
The upper value of the range.

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

setUpper

void setUpper(int index,
              java.lang.String value)
              throws java.io.IOException,
                     AutomationException
The upper value of the range.

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

getLower

java.lang.String getLower(int index)
                          throws java.io.IOException,
                                 AutomationException
The lower value of the range.

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

setLower

void setLower(int index,
              java.lang.String value)
              throws java.io.IOException,
                     AutomationException
The lower value of the range.

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

add

void add(IACSymbol symbol,
         int range,
         java.lang.String value,
         java.lang.String label,
         java.lang.String lower,
         java.lang.String upper)
         throws java.io.IOException,
                AutomationException
Adds a value and corresponding symbol to the list.

Parameters:
symbol - A reference to a com.esri.arcgis.carto.IACSymbol (in)
range - A com.esri.arcgis.carto.acRangeType constant (in)
value - The value (in)
label - The label (in)
lower - The lower (in)
upper - The upper (in)
Throws:
java.io.IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

clear

void clear()
           throws java.io.IOException,
                  AutomationException
Clears all values.

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

remove

void remove(int index)
            throws java.io.IOException,
                   AutomationException
Removes a value.

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