|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractList
java.util.ArrayList
com.crystaldecisions.sdk.occa.report.lib.ClonableList
com.crystaldecisions.sdk.occa.report.lib.ReportSDKVector
public class ReportSDKVector
This class defines a vector data structure with support for specific Report Application Server SDK functionality.
| Constructor Summary | |
|---|---|
ReportSDKVector()
|
|
ReportSDKVector(ReportSDKVector src)
|
|
| Method Summary | |
|---|---|
boolean |
add(java.lang.Object o)
Appends the specified element to the end of this collection. |
void |
add(int index,
java.lang.Object element)
Inserts the specified element at the specified position in this collection. |
void |
addElement(java.lang.Object obj)
Appends the specified object to the end of this collection. |
void |
addNullElement(int index)
For internal use only. |
java.lang.Object |
elementAt(int index)
Returns the element at the specified index. |
void |
insertElementAt(java.lang.Object obj,
int index)
Inserts the supplied Object at the specified index. |
void |
removeAllElements()
Removes all elements from this collection. |
| Methods inherited from class com.crystaldecisions.sdk.occa.report.lib.ClonableList |
|---|
clone, copyTo, copyTo, createMember, endElement, findIndexOf, hasContent, readElement, save, save, saveContents, startElement |
| Methods inherited from class java.util.ArrayList |
|---|
addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, set, size, toArray, toArray, trimToSize |
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
public ReportSDKVector(ReportSDKVector src)
public ReportSDKVector()
| Method Detail |
|---|
public boolean add(java.lang.Object o)
add in interface java.util.Collectionadd in interface java.util.Listadd in class java.util.ArrayListo - element to be added into the collection.
java.lang.NullPointerException - if the specified element is null and this
collection does not support null elements.
public void add(int index,
java.lang.Object element)
add in interface java.util.Listadd in class java.util.ArrayListindex - index at which the specified element is to be inserted.element - element to be inserted.
java.lang.IndexOutOfBoundsException - if index is out of range
(index < 0 || index > size()).
java.lang.NullPointerException - if the specified element is null and this
collection does not support null elements.public void addNullElement(int index)
public void addElement(java.lang.Object obj)
Appends the specified object to the end of this collection. Enforces type checking for the element to be added.
obj - The Object to be added.public java.lang.Object elementAt(int index)
Returns the element at the specified index.
index - The index of the element to be retrieved.
Object at the specified index.
public void insertElementAt(java.lang.Object obj,
int index)
Inserts the supplied Object at the specified index. All elements at index
or greater is shifted upward by 1. Enforces type checking for the element to be added.
obj - The Object to be inserted.index - The index at which to insert the Object.public void removeAllElements()
Removes all elements from this collection.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||