| Access | Constructor and Description |
|---|---|
| protected |
| Modifier and Type | Method and Description |
|---|---|
| public abstract void | add(int
index at which the specified element is to be inserted index, Object element to be inserted element)Redeclares java. Inserts the specified element at the specified position in this list (optional operation). |
| public abstract boolean | add(Object
element to be appended to this list o)Redeclares java. Appends the specified element to the end of this list (optional operation). |
| public abstract boolean | addAll(int
index at which to insert the first element from the
specified collection index, Collection<E> collection containing elements to be added to this list c)Redeclares java. Inserts all of the elements in the specified collection into this list at the specified position (optional operation). |
| public abstract boolean | addAll(Collection<E>
collection containing elements to be added to this list c)Redeclares java. Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation). |
| public abstract void | clear()
Redeclares java. Removes all of the elements from this list (optional operation). |
| public abstract boolean | contains(Object
element whose presence in this list is to be tested o)Redeclares java. Returns |
| public abstract boolean | containsAll(Collection<E>
collection to be checked for containment in this list c)Redeclares java. Returns |
| public abstract boolean | equals(Object
the object to be compared for equality with this list o)Redeclares java. Overrides org. Compares the specified object with this list for equality. |
| public abstract Object | get(int
index of the element to return index)Redeclares java. Returns the element at the specified position in this list. |
| public abstract PyObject[] | |
| public abstract int | hashCode()
Redeclares java. Overrides org. Returns the hash code value for this list. |
| public abstract int | indexOf(Object
element to search for o)Redeclares java. Returns the index of the first occurrence of the specified element in this list, or -1 if this list does not contain the element. |
| public abstract boolean | |
| public abstract Iterator | iterator()
Redeclares java. Returns an iterator over the elements in this list in proper sequence. |
| public abstract int | lastIndexOf(Object
element to search for o)Redeclares java. Returns the index of the last occurrence of the specified element in this list, or -1 if this list does not contain the element. |
| public abstract ListIterator | listIterator()
Redeclares java. Returns a list iterator over the elements in this list (in proper sequence). |
| public abstract ListIterator | listIterator(int
index of the first element to be returned from the
list iterator (by a call to index)next)Redeclares java. Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list. |
| public abstract void | |
| public abstract boolean | |
| public abstract PyObject | pyget(int
index of element to return. index)Implements abstract org. Returns the element of the sequence at the given index. |
| public abstract void | pyset(int
index of the element to set. index, PyObject the value to set this element to. element)Overrides org. Sets the indexed element of the sequence to the given value. |
| public boolean | refersDirectlyTo(PyObject ob)
Implements org. Optional operation. |
| public abstract Object | remove(int
the index of the element to be removed index)Redeclares java. Removes the element at the specified position in this list (optional operation). |
| public abstract void | |
| public abstract boolean | remove(Object
element to be removed from this list, if present o)Redeclares java. Removes the first occurrence of the specified element from this list, if it is present (optional operation). |
| public abstract boolean | removeAll(Collection<E>
collection containing elements to be removed from this list c)Redeclares java. Removes from this list all of its elements that are contained in the specified collection (optional operation). |
| public abstract boolean | retainAll(Collection<E>
collection containing elements to be retained in this list c)Redeclares java. Retains only the elements in this list that are contained in the specified collection (optional operation). |
| public abstract Object | set(int
index of the element to replace index, Object element to be stored at the specified position element)Redeclares java. Replaces the element at the specified position in this list with the specified element (optional operation). |
| public abstract int | |
| public abstract List | subList(int
low endpoint (inclusive) of the subList fromIndex, int high endpoint (exclusive) of the subList toIndex)Redeclares java. Returns a view of the portion of this list between the specified
|
| public abstract Object[] | toArray()
Redeclares java. Returns an array containing all of the elements in this list in proper sequence (from first to last element). |
| public abstract Object[] | toArray(Object[]
the array into which the elements of this list are to
be stored, if it is big enough; otherwise, a new array of the
same runtime type is allocated for this purpose. a)Redeclares java. Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. |
| public abstract String | toString()
Overrides org. Returns a string representation of the object. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |
| PySequenceList | back to summary |
|---|---|
| protected PySequenceList(PyType type) | |
| add | back to summary |
|---|---|
| public abstract void add(int index, Object element) Redeclares java. Doc from java. Inserts the specified element at the specified position in this list (optional operation). Shifts the element currently at that position (if any) and any subsequent elements to the right (adds one to their indices).
| |
| add | back to summary |
|---|---|
| public abstract boolean add(Object o) Redeclares java. Doc from java. Appends the specified element to the end of this list (optional operation). Lists that support this operation may place limitations on what elements may be added to this list. In particular, some lists will refuse to add null elements, and others will impose restrictions on the type of elements that may be added. List classes should clearly specify in their documentation any restrictions on what elements may be added.
| |
| addAll | back to summary |
|---|---|
| public abstract boolean addAll(int index, Collection<E> c) Redeclares java. Doc from java. Inserts all of the elements in the specified collection into this list at the specified position (optional operation). Shifts the element currently at that position (if any) and any subsequent elements to the right (increases their indices). The new elements will appear in this list in the order that they are returned by the specified collection's iterator. The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (Note that this will occur if the specified collection is this list, and it's nonempty.)
| |
| addAll | back to summary |
|---|---|
| public abstract boolean addAll(Collection<E> c) Redeclares java. Doc from java. Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified collection's iterator (optional operation). The behavior of this operation is undefined if the specified collection is modified while the operation is in progress. (Note that this will occur if the specified collection is this list, and it's nonempty.)
| |
| clear | back to summary |
|---|---|
| public abstract void clear() Redeclares java. Doc from java. Removes all of the elements from this list (optional operation). The list will be empty after this call returns. | |
| contains | back to summary |
|---|---|
| public abstract boolean contains(Object o) Redeclares java. Doc from java. Returns
| |
| containsAll | back to summary |
|---|---|
| public abstract boolean containsAll(Collection<E> c) Redeclares java. Doc from java. Returns
| |
| equals | back to summary |
|---|---|
| public abstract boolean equals(Object o) Redeclares java. Overrides org. Doc from java. Compares the specified object with this list for equality. Returns
| |
| get | back to summary |
|---|---|
| public abstract Object get(int index) Redeclares java. Doc from java. Returns the element at the specified position in this list.
| |
| getArray | back to summary |
|---|---|
| public abstract PyObject[] getArray() Get the backing array. The array should not be modified. To get a copy of the array, see
| |
| hashCode | back to summary |
|---|---|
| public abstract int hashCode() Redeclares java. Overrides org. Doc from java. Returns the hash code value for this list. The hash code of a list is defined to be the result of the following calculation:
This ensures that list1.equals(list2) implies that
list1.hashCode()==list2.hashCode() for any two lists,
list1 and list2, as required by the general
contract of Object#hashCode.
| |
| indexOf | back to summary |
|---|---|
| public abstract int indexOf(Object o) Redeclares java. Doc from java. Returns the index of the first occurrence of the specified element
in this list, or -1 if this list does not contain the element.
More formally, returns the lowest index
| |
| isEmpty | back to summary |
|---|---|
| public abstract boolean isEmpty() Redeclares java. Doc from java. Returns
| |
| iterator | back to summary |
|---|---|
| public abstract Iterator Redeclares java. Doc from java. Returns an iterator over the elements in this list in proper sequence.
| |
| lastIndexOf | back to summary |
|---|---|
| public abstract int lastIndexOf(Object o) Redeclares java. Doc from java. Returns the index of the last occurrence of the specified element
in this list, or -1 if this list does not contain the element.
More formally, returns the highest index
| |
| listIterator | back to summary |
|---|---|
| public abstract ListIterator Redeclares java. Doc from java. Returns a list iterator over the elements in this list (in proper sequence).
| |
| listIterator | back to summary |
|---|---|
| public abstract ListIterator Redeclares java. Doc from java. Returns a list iterator over the elements in this list (in proper
sequence), starting at the specified position in the list.
The specified index indicates the first element that would be
returned by an initial call to
| |
| pyadd | back to summary |
|---|---|
| public abstract void pyadd(int index, PyObject element) | |
| pyadd | back to summary |
|---|---|
| public abstract boolean pyadd(PyObject o) | |
| pyget | back to summary |
|---|---|
| public abstract PyObject pyget(int index) Implements abstract org. Doc from org. Returns the element of the sequence at the given index. This is an extension point called by
PySequence in its implementation of
| |
| pyset | back to summary |
|---|---|
| public abstract void pyset(int index, PyObject element) Overrides org. Doc from org. Sets the indexed element of the sequence to the given value. This is an extension point
called by PySequence in its implementation of
| |
| refersDirectlyTo | back to summary |
|---|---|
| public boolean refersDirectlyTo(PyObject ob) throws UnsupportedOperationException Implements org. Doc from org. Optional operation.
Should only be implemented if it is more efficient
than calling
| |
| remove | back to summary |
|---|---|
| public abstract Object remove(int index) Redeclares java. Doc from java. Removes the element at the specified position in this list (optional operation). Shifts any subsequent elements to the left (subtracts one from their indices). Returns the element that was removed from the list.
| |
| remove | back to summary |
|---|---|
| public abstract void remove(int start, int stop) | |
| remove | back to summary |
|---|---|
| public abstract boolean remove(Object o) Redeclares java. Doc from java. Removes the first occurrence of the specified element from this list,
if it is present (optional operation). If this list does not contain
the element, it is unchanged. More formally, removes the element with
the lowest index
| |
| removeAll | back to summary |
|---|---|
| public abstract boolean removeAll(Collection<E> c) Redeclares java. Doc from java. Removes from this list all of its elements that are contained in the specified collection (optional operation).
| |
| retainAll | back to summary |
|---|---|
| public abstract boolean retainAll(Collection<E> c) Redeclares java. Doc from java. Retains only the elements in this list that are contained in the specified collection (optional operation). In other words, removes from this list all of its elements that are not contained in the specified collection.
| |
| set | back to summary |
|---|---|
| public abstract Object set(int index, Object element) Redeclares java. Doc from java. Replaces the element at the specified position in this list with the specified element (optional operation).
the element previously at the specified position | |
| size | back to summary |
|---|---|
| public abstract int size() Redeclares java. Doc from java. Returns the number of elements in this list. If this list contains
more than
| |
| subList | back to summary |
|---|---|
| public abstract List Redeclares java. Doc from java. Returns a view of the portion of this list between the specified
This method eliminates the need for explicit range operations (of the sort that commonly exist for arrays). Any operation that expects a list can be used as a range operation by passing a subList view instead of a whole list. For example, the following idiom removes a range of elements from a list:
Similar idioms may be constructed for indexOf and
lastIndexOf, and all of the algorithms in the
Collections class can be applied to a subList.The semantics of the list returned by this method become undefined if the backing list (i.e., this list) is structurally modified in any way other than via the returned list. (Structural modifications are those that change the size of this list, or otherwise perturb it in such a fashion that iterations in progress may yield incorrect results.)
a view of the specified range within this list | |
| toArray | back to summary |
|---|---|
| public abstract Object[] toArray() Redeclares java. Doc from java. Returns an array containing all of the elements in this list in proper sequence (from first to last element). The returned array will be "safe" in that no references to it are maintained by this list. (In other words, this method must allocate a new array even if this list is backed by an array). The caller is thus free to modify the returned array. This method acts as bridge between array-based and collection-based APIs.
| |
| toArray | back to summary |
|---|---|
| public abstract Object[] toArray(Object[] a) Redeclares java. Doc from java. Returns an array containing all of the elements in this list in proper sequence (from first to last element); the runtime type of the returned array is that of the specified array. If the list fits in the specified array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the specified array and the size of this list. If the list fits in the specified array with room to spare (i.e.,
the array has more elements than the list), the element in the array
immediately following the end of the list is set to Like the Suppose
Note that toArray(new Object[0]) is identical in function to
toArray().
| |
| toString | back to summary |
|---|---|
| public abstract String toString() Overrides org. Doc from java. Returns a string representation of the object.
Satisfying this method's contract implies a non-
| |
| traverse | back to summary |
|---|---|
| public int traverse(Visitproc visit, Object arg) Implements org. Doc from org. Traverses all directly contained
| |