Modifier and Type | Method and Description |
---|---|
void |
add(int index,
PyObject element) |
boolean |
add(PyObject pyObject) |
boolean |
addAll(Collection<? extends PyObject> c) |
boolean |
addAll(int index,
Collection<? extends PyObject> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
PyObject |
get(int index) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<PyObject> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<PyObject> |
listIterator() |
ListIterator<PyObject> |
listIterator(int index) |
PyObject |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
PyObject |
set(int index,
PyObject element) |
void |
setItem(int index,
PyObject element) |
int |
size() |
List<PyObject> |
subList(int fromIndex,
int toIndex) |
PyObject[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString(int prefixLength)
Return a summarized preview of this list.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
equals, hashCode, replaceAll, sort, spliterator
parallelStream, removeIf, stream
public int size()
public boolean isEmpty()
public boolean contains(Object o)
public PyObject[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(PyObject pyObject)
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll
in interface Collection<PyObject>
containsAll
in interface List<PyObject>
public boolean addAll(Collection<? extends PyObject> c)
public boolean addAll(int index, Collection<? extends PyObject> c)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public void clear()
public void setItem(int index, PyObject element)
public int lastIndexOf(Object o)
lastIndexOf
in interface List<PyObject>
public ListIterator<PyObject> listIterator()
listIterator
in interface List<PyObject>
public ListIterator<PyObject> listIterator(int index)
listIterator
in interface List<PyObject>
public String toString(int prefixLength)
prefixLength
- The maximum prefix of the array to convertCopyright © 2014–2022 Brockmann Consult GmbH. All rights reserved.