com.crystaldecisions.sdk.occa.report.lib
Interface IStrings

All Superinterfaces:
java.util.Collection, java.util.List
All Known Implementing Classes:
Strings

public interface IStrings
extends java.util.List

This interface defines a collection of String objects.


Method Summary
 boolean equalsIgnoreCase(IStrings srcStrings)
           Returns true if the specified IStrings object is equal to this object, regardless of case.
 java.lang.String getString(int index)
           Returns the String at the specified index.
 
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray
 

Method Detail

equalsIgnoreCase

public boolean equalsIgnoreCase(IStrings srcStrings)

Returns true if the specified IStrings object is equal to this object, regardless of case. In other words, this method performs a case-insensitive equality test.

Parameters:
srcStrings - The IStrings object to be compared to.
Returns:
true if the specified IStrings object is equal to this object, and false otherwise.

getString

public java.lang.String getString(int index)

Returns the String at the specified index.

Parameters:
index - The index of the desired String.
Returns:
The String at the specified index.