com.esri.arcgis.geoprocessing
Interface IBStringArray

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
EnumBSTR, IBStringArrayProxy

public interface IBStringArray
extends java.io.Serializable

COM Interface 'IBStringArray'. Generated 3/19/2015 1:20:58 PM from 'C:\ArcGIS\COM\esriGeoprocessing.olb'

Description: 'Provides access to the properties/methods of the string array.' 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 IID0c39cb39_fd27_49da_89d2_fc3f017064f9
           
static int xxDummy
          Deprecated. Internal use only
 
Method Summary
 void addString(java.lang.String str)
          Adds a string to the array.
 int getCount()
          The size of the array.
 java.lang.String getString(int index)
          The string at the specified index in the array.
 void insertString(int index, java.lang.String str)
          Adds a string to the array at the specified index.
 void removeAll()
          Removes all strings from the array.
 void removeString(int index)
          Removes a string from the array.
 void replaceString(int index, java.lang.String str)
          Replaces a string in the array.
 

Field Detail

IID0c39cb39_fd27_49da_89d2_fc3f017064f9

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

getCount

int getCount()
             throws java.io.IOException,
                    AutomationException
The size of the array.

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

getString

java.lang.String getString(int index)
                           throws java.io.IOException,
                                  AutomationException
The string at the specified index in the array.

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

addString

void addString(java.lang.String str)
               throws java.io.IOException,
                      AutomationException
Adds a string to the array.

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

insertString

void insertString(int index,
                  java.lang.String str)
                  throws java.io.IOException,
                         AutomationException
Adds a string to the array at the specified index.

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

removeString

void removeString(int index)
                  throws java.io.IOException,
                         AutomationException
Removes a string from the array.

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

removeAll

void removeAll()
               throws java.io.IOException,
                      AutomationException
Removes all strings from the array.

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

replaceString

void replaceString(int index,
                   java.lang.String str)
                   throws java.io.IOException,
                          AutomationException
Replaces a string in the array.

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