Class ArrayListIterator

    • Constructor Detail

      • ArrayListIterator

        public ArrayListIterator()
        Deprecated.
        Constructor for use with setArray.

        Using this constructor, the iterator is equivalent to an empty iterator until ArrayIterator.setArray(Object) is called to establish the array to iterate over.

      • ArrayListIterator

        public ArrayListIterator​(Object array)
        Deprecated.
        Constructs an ArrayListIterator that will iterate over the values in the specified array.
        Parameters:
        array - the array to iterate over
        Throws:
        IllegalArgumentException - if array is not an array.
        NullPointerException - if array is null
      • ArrayListIterator

        public ArrayListIterator​(Object array,
                                 int startIndex)
        Deprecated.
        Constructs an ArrayListIterator that will iterate over the values in the specified array from a specific start index.
        Parameters:
        array - the array to iterate over
        startIndex - the index to start iterating at
        Throws:
        IllegalArgumentException - if array is not an array.
        NullPointerException - if array is null
        IndexOutOfBoundsException - if the start index is out of bounds
      • ArrayListIterator

        public ArrayListIterator​(Object array,
                                 int startIndex,
                                 int endIndex)
        Deprecated.
        Construct an ArrayListIterator that will iterate over a range of values in the specified array.
        Parameters:
        array - the array to iterate over
        startIndex - the index to start iterating at
        endIndex - the index (exclusive) to finish iterating at
        Throws:
        IllegalArgumentException - if array is not an array.
        IndexOutOfBoundsException - if the start or end index is out of bounds
        IllegalArgumentException - if end index is before the start
        NullPointerException - if array is null
    • Method Detail

      • hasPrevious

        public boolean hasPrevious()
        Deprecated.
        Returns true if there are previous elements to return from the array.
        Specified by:
        hasPrevious in interface ListIterator
        Returns:
        true if there is a previous element to return
      • nextIndex

        public int nextIndex()
        Deprecated.
        Gets the next index to be retrieved.
        Specified by:
        nextIndex in interface ListIterator
        Returns:
        the index of the item to be retrieved next
      • previousIndex

        public int previousIndex()
        Deprecated.
        Gets the index of the item to be retrieved if previous() is called.
        Specified by:
        previousIndex in interface ListIterator
        Returns:
        the index of the item to be retrieved next
      • set

        public void set​(Object o)
        Deprecated.
        Sets the element under the cursor.

        This method sets the element that was returned by the last call to next() of previous().

        Note: ListIterator implementations that support add() and remove() only allow set() to be called once per call to next() or previous (see the ListIterator javadoc for more details). Since this implementation does not support add() or remove(), set() may be called as often as desired.

        Specified by:
        set in interface ListIterator
        See Also:
        ListIterator.set(E)