Class PyList

    • Field Detail

      • TYPE

        public static final PyType TYPE
      • gListAllocatedStatus

        public volatile int gListAllocatedStatus
    • Constructor Detail

      • PyList

        public PyList()
      • PyList

        public PyList​(PyType type)
      • PyList

        public PyList​(PyType type,
                      java.util.Collection c)
      • PyList

        public PyList​(PyObject[] elements)
      • PyList

        public PyList​(java.util.Collection c)
      • PyList

        public PyList​(java.util.Iterator<PyObject> iter)
    • Method Detail

      • fromList

        public static PyList fromList​(java.util.List<PyObject> list)
      • __len__

        public int __len__()
        Description copied from class: PyObject
        Equivalent to the standard Python __len__ method. Part of the mapping discipline.
        Overrides:
        __len__ in class PyObject
        Returns:
        the length of the object
      • __imul__

        public PyObject __imul__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __imul__ method.
        Overrides:
        __imul__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the right-hand operand).
        Returns:
        the result of the imul, or null if this operation is not defined.
      • __mul__

        public PyObject __mul__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __mul__ method.
        Overrides:
        __mul__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the right-hand operand).
        Returns:
        the result of the mul, or null if this operation is not defined
      • __rmul__

        public PyObject __rmul__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __rmul__ method.
        Overrides:
        __rmul__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the left-hand operand).
        Returns:
        the result of the mul, or null if this operation is not defined.
      • __add__

        public PyObject __add__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __add__ method.
        Overrides:
        __add__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the right-hand operand).
        Returns:
        the result of the add, or null if this operation is not defined.
      • __radd__

        public PyObject __radd__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __radd__ method.
        Overrides:
        __radd__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the left-hand operand).
        Returns:
        the result of the add, or null if this operation is not defined.
      • __iter__

        public PyObject __iter__()
        Description copied from class: PyObject
        Return an iterator that is used to iterate the element of this sequence. From version 2.2, this method is the primary protocol for looping over sequences.

        If a PyObject subclass should support iteration based in the __finditem__() method, it must supply an implementation of __iter__() like this:

         public PyObject __iter__() {
             return new PySequenceIter(this);
         }
         
        When iterating over a python sequence from java code, it should be done with code like this:
         for (PyObject item : seq.asIterable()) {
             // Do somting with item
         }
         
        Overrides:
        __iter__ in class PySequence
      • append

        public void append​(PyObject o)
        Add a single element to the end of list.
        Parameters:
        o - the element to add.
      • count

        public int count​(PyObject o)
        Return the number elements in the list that equals the argument.
        Parameters:
        o - the argument to test for. Testing is done with the == operator.
      • index

        public int index​(PyObject o)
        return smallest index where an element in the list equals the argument.
        Parameters:
        o - the argument to test for. Testing is done with the == operator.
      • index

        public int index​(PyObject o,
                         int start)
      • index

        public int index​(PyObject o,
                         int start,
                         int stop)
      • insert

        public void insert​(int index,
                           PyObject o)
        Insert the argument element into the list at the specified index.
        Same as s[index:index] = [o] if index >= 0.
        Parameters:
        index - the position where the element will be inserted.
        o - the element to insert.
      • remove

        public void remove​(PyObject o)
        Remove the first occurence of the argument from the list. The elements arecompared with the == operator.
        Same as del s[s.index(x)]
        Parameters:
        o - the element to search for and remove.
      • reverse

        public void reverse()
        Reverses the items of s in place. The reverse() methods modify the list in place for economy of space when reversing a large list. It doesn't return the reversed list to remind you of this side effect.
      • pop

        public PyObject pop()
        Removes and return the last element in the list.
      • pop

        public PyObject pop​(int n)
        Removes and return the n indexed element in the list.
        Parameters:
        n - the index of the element to remove and return.
      • extend

        public void extend​(PyObject o)
        Append the elements in the argument sequence to the end of the list.
        Same as s[len(s):len(s)] = o.
        Parameters:
        o - the sequence of items to append to the list.
      • __iadd__

        public PyObject __iadd__​(PyObject o)
        Description copied from class: PyObject
        Equivalent to the standard Python __iadd__ method.
        Overrides:
        __iadd__ in class PyObject
        Parameters:
        o - the object to perform this binary operation with (the right-hand operand).
        Returns:
        the result of the iadd, or null if this operation is not defined
      • sort

        public void sort()
      • sort

        public void sort​(PyObject compare)
      • hashCode

        public int hashCode()
        Specified by:
        hashCode in interface java.util.Collection
        Specified by:
        hashCode in interface java.util.List
        Specified by:
        hashCode in class PySequenceList
      • add

        public void add​(int index,
                        java.lang.Object element)
        Specified by:
        add in interface java.util.List
        Specified by:
        add in class PySequenceList
      • add

        public boolean add​(java.lang.Object o)
        Specified by:
        add in interface java.util.Collection
        Specified by:
        add in interface java.util.List
        Specified by:
        add in class PySequenceList
      • addAll

        public boolean addAll​(int index,
                              java.util.Collection c)
        Specified by:
        addAll in interface java.util.List
        Specified by:
        addAll in class PySequenceList
      • addAll

        public boolean addAll​(java.util.Collection c)
        Specified by:
        addAll in interface java.util.Collection
        Specified by:
        addAll in interface java.util.List
        Specified by:
        addAll in class PySequenceList
      • clear

        public void clear()
        Specified by:
        clear in interface java.util.Collection
        Specified by:
        clear in interface java.util.List
        Specified by:
        clear in class PySequenceList
      • contains

        public boolean contains​(java.lang.Object o)
        Specified by:
        contains in interface java.util.Collection
        Specified by:
        contains in interface java.util.List
        Specified by:
        contains in class PySequenceList
      • containsAll

        public boolean containsAll​(java.util.Collection c)
        Specified by:
        containsAll in interface java.util.Collection
        Specified by:
        containsAll in interface java.util.List
        Specified by:
        containsAll in class PySequenceList
      • equals

        public boolean equals​(java.lang.Object other)
        Description copied from class: PyObject
        Should almost never be overridden. If overridden, it is the subclasses responsibility to ensure that a.equals(b) == true iff cmp(a,b) == 0
        Specified by:
        equals in interface java.util.Collection
        Specified by:
        equals in interface java.util.List
        Specified by:
        equals in class PySequenceList
      • get

        public java.lang.Object get​(int index)
        Specified by:
        get in interface java.util.List
        Specified by:
        get in class PySequenceList
      • indexOf

        public int indexOf​(java.lang.Object o)
        Specified by:
        indexOf in interface java.util.List
        Specified by:
        indexOf in class PySequenceList
      • isEmpty

        public boolean isEmpty()
        Specified by:
        isEmpty in interface java.util.Collection
        Specified by:
        isEmpty in interface java.util.List
        Specified by:
        isEmpty in class PySequenceList
      • iterator

        public java.util.Iterator<java.lang.Object> iterator()
        Specified by:
        iterator in interface java.util.Collection
        Specified by:
        iterator in interface java.lang.Iterable
        Specified by:
        iterator in interface java.util.List
        Specified by:
        iterator in class PySequenceList
      • lastIndexOf

        public int lastIndexOf​(java.lang.Object o)
        Specified by:
        lastIndexOf in interface java.util.List
        Specified by:
        lastIndexOf in class PySequenceList
      • listIterator

        public java.util.ListIterator listIterator()
        Specified by:
        listIterator in interface java.util.List
        Specified by:
        listIterator in class PySequenceList
      • listIterator

        public java.util.ListIterator listIterator​(int index)
        Specified by:
        listIterator in interface java.util.List
        Specified by:
        listIterator in class PySequenceList
      • remove

        public java.lang.Object remove​(int index)
        Specified by:
        remove in interface java.util.List
        Specified by:
        remove in class PySequenceList
      • remove

        public void remove​(int start,
                           int stop)
        Specified by:
        remove in class PySequenceList
      • removeAll

        public boolean removeAll​(java.util.Collection c)
        Specified by:
        removeAll in interface java.util.Collection
        Specified by:
        removeAll in interface java.util.List
        Specified by:
        removeAll in class PySequenceList
      • retainAll

        public boolean retainAll​(java.util.Collection c)
        Specified by:
        retainAll in interface java.util.Collection
        Specified by:
        retainAll in interface java.util.List
        Specified by:
        retainAll in class PySequenceList
      • set

        public java.lang.Object set​(int index,
                                    java.lang.Object element)
        Specified by:
        set in interface java.util.List
        Specified by:
        set in class PySequenceList
      • size

        public int size()
        Specified by:
        size in interface java.util.Collection
        Specified by:
        size in interface java.util.List
        Specified by:
        size in class PySequenceList
      • subList

        public java.util.List subList​(int fromIndex,
                                      int toIndex)
        Specified by:
        subList in interface java.util.List
        Specified by:
        subList in class PySequenceList
      • toArray

        public java.lang.Object[] toArray()
        Specified by:
        toArray in interface java.util.Collection
        Specified by:
        toArray in interface java.util.List
        Specified by:
        toArray in class PySequenceList
      • toArray

        public java.lang.Object[] toArray​(java.lang.Object[] a)
        Specified by:
        toArray in interface java.util.Collection
        Specified by:
        toArray in interface java.util.List
        Specified by:
        toArray in class PySequenceList
      • remove

        public boolean remove​(java.lang.Object o)
        Specified by:
        remove in interface java.util.Collection
        Specified by:
        remove in interface java.util.List
        Specified by:
        remove in class PySequenceList