Class PyTuple

    • Field Detail

      • TYPE

        public static final PyType TYPE
    • Constructor Detail

      • PyTuple

        public PyTuple()
      • PyTuple

        public PyTuple​(PyObject... elements)
      • PyTuple

        public PyTuple​(PyObject[] elements,
                       boolean copy)
      • PyTuple

        public PyTuple​(PyType subtype,
                       PyObject[] elements,
                       boolean copy)
    • Method Detail

      • fromIterable

        public static PyTuple fromIterable​(PyObject iterable)
        Return a new PyTuple from an iterable. Raises a TypeError if the object is not iterable.
        Parameters:
        iterable - an iterable PyObject
        Returns:
        a PyTuple containing each item in the iterable
      • __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
      • __add__

        public PyObject __add__​(PyObject generic_other)
        Description copied from class: PyObject
        Equivalent to the standard Python __add__ method.
        Overrides:
        __add__ in class PyObject
        Parameters:
        generic_other - 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.
      • __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.
      • __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
      • tuple___iter__

        public PyObject tuple___iter__()
      • 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
      • subList

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

        public java.util.Iterator 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
      • 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
      • 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
      • addAll

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

        public boolean removeAll​(java.util.Collection coll)
        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 coll)
        Specified by:
        retainAll in interface java.util.Collection
        Specified by:
        retainAll in interface java.util.List
        Specified by:
        retainAll 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
      • 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
      • add

        public void add​(int index,
                        java.lang.Object element)
        Specified by:
        add in interface java.util.List
        Specified by:
        add 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
      • addAll

        public boolean addAll​(int index,
                              java.util.Collection c)
        Specified by:
        addAll in interface java.util.List
        Specified by:
        addAll 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
      • 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
      • count

        public int count​(PyObject value)
      • index

        public int index​(PyObject value)
      • index

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

        public int index​(PyObject value,
                         int start,
                         int stop)
      • 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
      • lastIndexOf

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

        public void remove​(int start,
                           int stop)
        Specified by:
        remove 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
      • 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[] converted)
        Specified by:
        toArray in interface java.util.Collection
        Specified by:
        toArray in interface java.util.List
        Specified by:
        toArray in class PySequenceList