Class PyObjectList

All Implemented Interfaces:
Serializable, Cloneable, Iterable, Collection, List

public class PyObjectList extends AbstractList implements Cloneable, Serializable
java.util.List implementation using an underlying PyObject array for higher performance. Jython should use the following methods where possible, instead of their List counterparts:
  • pyadd(int, PyObject)
  • pyadd(PyObject)
  • pyset(PyObject)
  • pyget()
Author:
Clark Updike
See Also: