com.crystaldecisions.sdk.occa.report.lib
Interface IClonableList<E>

All Superinterfaces:
java.util.Collection<E>, IClone, java.lang.Iterable<E>, java.util.List<E>

public interface IClonableList<E>
extends java.util.List<E>, IClone


Method Summary
 int findIndexOf(java.lang.Object object)
           Returns the index of the first occurrence of the specified Object in this collection.
 
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

findIndexOf

int findIndexOf(java.lang.Object object)

Returns the index of the first occurrence of the specified Object in this collection. Both the type and the content of the Objects must match exactly.

Parameters:
object - The Object to search for.
Returns:
An int that specifies the index of the first occurrence of the specified Object or -1 if it is not found.