| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
  |
  +--org.python.core.PyObject
        |
        +--org.python.core.PySequence
              |
              +--org.python.core.PyList
A builtin python list.
| Field Summary | |
| static PyClass | __class__ | 
| Constructor Summary | |
| PyList() | |
| PyList(PyObject[] elements) | |
| PyList(java.util.Vector ilist) | |
| Method Summary | |
|  PyObject | __add__(PyObject genericOther)Equivalent to the standard Python __add__ method | 
|  PyObject | __findattr__(java.lang.String name)A variant of the __findattr__ method which accepts a Java Stringas the name. | 
|  PyObject | __iadd__(PyObject o)Equivalent to the standard Python __iadd__ method | 
|  PyObject | __imul__(PyObject o)Equivalent to the standard Python __imul__ method | 
|  int | __len__()Equivalent to the standard Python __len__ method. | 
|  void | append(PyObject o)Add a single element to the end of list. | 
| static void | classDictInit(PyObject dict)Internal use only. | 
|  int | count(PyObject o)Return the number elements in the list that equals the argument. | 
|  void | extend(PyObject o)Append the elements in the argument sequence to the end of the list. | 
|  int | hashCode() | 
|  int | index(PyObject o)return smallest index where an element in the list equals the argument. | 
|  void | insert(int index,
       PyObject o)Insert the argument element into the list at the specified index. | 
|  PyObject | pop()Removes and return the last element in the list. | 
|  PyObject | pop(int n)Removes and return the nindexed element in the
 list. | 
|  void | remove(PyObject o)Remove the first occurence of the argument from the list. | 
|  void | reverse()Reverses the items of s in place. | 
|  java.lang.String | safeRepr() | 
|  void | sort()Sort the items of the list in place. | 
|  void | sort(PyObject compare)Sort the items of the list in place. | 
|  java.lang.String | toString() | 
| Methods inherited from class org.python.core.PySequence | 
| __delitem__, __delslice__, __eq__, __finditem__, __finditem__, __ge__, __getitem__, __getslice__, __gt__, __le__, __lt__, __ne__, __nonzero__, __setitem__, __setitem__, __setslice__, __tojava__, isMappingType, isNumberType | 
| Methods inherited from class java.lang.Object | 
| getClass, notify, notifyAll, wait, wait, wait | 
| Field Detail | 
public static PyClass __class__
| Constructor Detail | 
public PyList()
public PyList(java.util.Vector ilist)
public PyList(PyObject[] elements)
| Method Detail | 
public static void classDictInit(PyObject dict)
public java.lang.String safeRepr()
                          throws PyIgnoreMethodTag
safeRepr in class PyObjectPyIgnoreMethodTagpublic int __len__()
PyObject
__len__ in class PyObjectpublic PyObject __findattr__(java.lang.String name)
PyObjectString as the name.
 By default, this method will call __findattr__(PyString
 name) with the appropriate args.  The only reason to override
 this method is for performance.
 Warning: name must be an interned string!!!!!!!!
__findattr__ in class PyObjectname - the name to lookup in this namespace
  must be an interned string .
PyObject.__findattr__(PyString)public PyObject __imul__(PyObject o)
PyObject
__imul__ in class PyObjecto - the object to perform this binary operation with
            (the right-hand operand).
public PyObject __add__(PyObject genericOther)
PyObject
__add__ in class PyObjectgenericOther - the object to perform this binary operation with
            (the right-hand operand).
public java.lang.String toString()
toString in class java.lang.Objectpublic void append(PyObject o)
o - the element to add.public int count(PyObject o)
o - the argument to test for. Testing is done with
          the == operator.public int index(PyObject o)
o - the argument to test for. Testing is done with
          the == operator.
public void insert(int index,
                   PyObject o)
s[index:index] = [o] if index >= 0.
index - the position where the element will be inserted.o - the element to insert.public void remove(PyObject o)
== operator.
 del s[s.index(x)]
o - the element to search for and remove.public void reverse()
public PyObject pop()
public PyObject pop(int n)
n indexed element in the
 list.
n - the index of the element to remove and return.public void extend(PyObject o)
s[len(s):len(s)] = o.
o - the sequence of items to append to the list.public PyObject __iadd__(PyObject o)
PyObject
__iadd__ in class PyObjecto - the object to perform this binary operation with
            (the right-hand operand).
public void sort(PyObject compare)
compare - the comparison function.public void sort()
public int hashCode()
hashCode in class PyObject| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||