| Modifier and Type | Field and Description |
|---|---|
| private AstAdapter | |
| private List | data
The underlying Java List. |
| private static final PyString[] | |
| public static final PyType |
| Access | Constructor and Description |
|---|---|
| public | |
| public | |
| public | |
| public |
| Modifier and Type | Method and Description |
|---|---|
| public PyObject | __add__(PyObject
the object to perform this binary operation with (the right-hand operand). other)Overrides org. Equivalent to the standard Python __add__ method. |
| public PyObject | __iadd__(PyObject
the object to perform this binary operation with (the right-hand operand). other)Overrides org. Equivalent to the standard Python __iadd__ method. |
| public PyObject | __imul__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __imul__ method. |
| public int | __len__()
Overrides org. Equivalent to the standard Python __len__ method. |
| public PyObject | __mul__(PyObject
the object to perform this binary operation with (the right-hand operand). o)Overrides org. Equivalent to the standard Python __mul__ method. |
| public PyObject | __radd__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __radd__ method. |
| public PyObject | __rmul__(PyObject
the object to perform this binary operation with (the left-hand operand). o)Overrides org. Equivalent to the standard Python __rmul__ method. |
| public Object | __tojava__(Class<T>
the Class to convert this c)PyObject to.Overrides org. Equivalent to the Jython __tojava__ method. |
| private int | |
| public void | add(int
index at which the specified element is to be inserted index, Object element to be inserted element)Implements java. Inserts the specified element at the specified position in this list (optional operation). |
| public boolean | add(Object
element to be appended to this list o)Implements java. Appends the specified element to the end of this list (optional operation). |
| public 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)Implements java. Inserts all of the elements in the specified collection into this list at the specified position (optional operation). |
| public boolean | addAll(Collection<E>
collection containing elements to be added to this list c)Implements 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 void | |
| pack-priv final PyObject | |
| pack-priv final boolean | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| public PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final boolean | |
| pack-priv final PyObject | |
| pack-priv final PyObject | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final int | |
| pack-priv final void | |
| pack-priv final int | |
| pack-priv final int | |
| pack-priv final int | |
| pack-priv final int | |
| pack-priv final void | |
| pack-priv final PyObject | |
| pack-priv final void | |
| pack-priv final void | |
| pack-priv final String | |
| public void | clear()
Implements java. Removes all of the elements from this list (optional operation). |
| public Object | |
| public boolean | contains(Object
element whose presence in this list is to be tested o)Implements java. Returns |
| public boolean | containsAll(Collection<E>
collection to be checked for containment in this list c)Implements java. Returns |
| public int | |
| protected void | del(int
index of the element to delete. i)Overrides org. Deletes an element from the sequence (and closes up the gap). |
| protected void | |
| public void | |
| public Object | get(int
index of the element to return index)Implements java. Returns the element at the specified position in this list. |
| public PyString[] | |
| protected PyObject | getslice(int
the position of the first element. start, int one more than the position of the last element. stop, int the step size. step)Implements abstract org. Returns a range of elements from the sequence. |
| public int | |
| public int | |
| public int | |
| public int | indexOf(Object
element to search for o)Implements 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 void | |
| public boolean | |
| public Iterator | iterator()
Implements java. Returns an iterator over the elements in this list in proper sequence. |
| public int | lastIndexOf(Object
element to search for o)Implements 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 ListIterator | listIterator()
Implements java. Returns a list iterator over the elements in this list (in proper sequence). |
| public ListIterator | listIterator(int
index of the first element to be returned from the
list iterator (by a call to index)next)Implements java. Returns a list iterator over the elements in this list (in proper sequence), starting at the specified position in the list. |
| public PyObject | |
| public PyObject | |
| public boolean | |
| public void | |
| public PyObject | pyget(int
index of element to return. index)Implements abstract org. Returns the element of the sequence at the given index. |
| public 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 void | |
| public Object | remove(int
the index of the element to be removed index)Implements java. Removes the element at the specified position in this list (optional operation). |
| public boolean | remove(Object
element to be removed from this list, if present o)Implements java. Removes the first occurrence of the specified element from this list, if it is present (optional operation). |
| public boolean | removeAll(Collection<E>
collection containing elements to be removed from this list c)Implements java. Removes from this list all of its elements that are contained in the specified collection (optional operation). |
| protected PyObject | repeat(int
the number of times to repeat the sequence. count)Implements abstract org. Returns a (concrete subclass of) PySequence that repeats the given sequence, as in the
implementation of |
| public boolean | retainAll(Collection<E>
collection containing elements to be retained in this list c)Implements java. Retains only the elements in this list that are contained in the specified collection (optional operation). |
| public void | |
| public Object | set(int
index of the element to replace index, Object element to be stored at the specified position element)Implements java. Replaces the element at the specified position in this list with the specified element (optional operation). |
| protected void | setslice(int
the position of the first element. start, int one more than the position of the last element. stop, int the step size. step, PyObject an object consistent with the slice assignment value)Overrides org. Sets the given range of elements according to Python slice assignment semantics. |
| protected void | |
| protected void | |
| protected void | |
| public int | |
| public List | subList(int
low endpoint (inclusive) of the subList fromIndex, int high endpoint (exclusive) of the subList toIndex)Implements java. Returns a view of the portion of this list between the specified
|
| public Object[] | toArray()
Implements java. Returns an array containing all of the elements in this list in proper sequence (from first to last element). |
| public 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)Implements 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 String | toString()
Overrides org. Returns a string representation of the object. |
| public int | traverse(Visitproc visit, Object arg)
Implements org. Traverses all directly contained |