Class ByteList.ByteListIterator

java.lang.Object
com.github.tommyettinger.ds.ByteList.ByteListIterator
All Implemented Interfaces:
ByteIterator, Iterator<Byte>
Direct Known Subclasses:
ByteDeque.ByteDequeIterator
Enclosing class:
ByteList

public static class ByteList.ByteListIterator extends Object implements ByteIterator
A ByteIterator, plus ListIterator methods, over the elements of a ByteList. Use nextByte() in preference to ByteIterator.next() to avoid allocating Byte objects.
  • Field Details

    • index

      protected int index
    • latest

      protected int latest
    • list

      protected ByteList list
    • valid

      public boolean valid
      Used to track if a reusable iterator can be used now. This is public so subclasses of ByteList (in other packages) can still access this directly even though it belongs to ByteListIterator, not ByteList.
  • Constructor Details

    • ByteListIterator

      public ByteListIterator(ByteList list)
    • ByteListIterator

      public ByteListIterator(ByteList list, int index)
  • Method Details

    • nextByte

      public byte nextByte()
      Returns the next int element in the iteration.
      Specified by:
      nextByte in interface ByteIterator
      Returns:
      the next int element in the iteration
      Throws:
      NoSuchElementException - if the iteration has no more elements
    • hasNext

      public boolean hasNext()
      Returns true if the iteration has more elements. (In other words, returns true if nextByte() would return an element rather than throwing an exception.)
      Specified by:
      hasNext in interface Iterator<Byte>
      Returns:
      true if the iteration has more elements
    • hasPrevious

      public boolean hasPrevious()
      Returns true if this list iterator has more elements when traversing the list in the reverse direction. (In other words, returns true if previousByte() would return an element rather than throwing an exception.)
      Returns:
      true if the list iterator has more elements when traversing the list in the reverse direction
    • previousByte

      public byte previousByte()
      Returns the previous element in the list and moves the cursor position backwards. This method may be called repeatedly to iterate through the list backwards, or intermixed with calls to nextByte() to go back and forth. (Note that alternating calls to next and previous will return the same element repeatedly.)
      Returns:
      the previous element in the list
      Throws:
      NoSuchElementException - if the iteration has no previous element
    • nextIndex

      public int nextIndex()
      Returns the index of the element that would be returned by a subsequent call to nextByte(). (Returns list size if the list iterator is at the end of the list.)
      Returns:
      the index of the element that would be returned by a subsequent call to next, or list size if the list iterator is at the end of the list
    • previousIndex

      public int previousIndex()
      Returns the index of the element that would be returned by a subsequent call to previousByte(). (Returns -1 if the list iterator is at the beginning of the list.)
      Returns:
      the index of the element that would be returned by a subsequent call to previous, or -1 if the list iterator is at the beginning of the list
    • remove

      public void remove()
      Removes from the list the last element that was returned by nextByte() or previousByte() (optional operation). This call can only be made once per call to next or previous. It can be made only if add(byte) has not been called after the last call to next or previous.
      Specified by:
      remove in interface Iterator<Byte>
      Throws:
      UnsupportedOperationException - if the remove operation is not supported by this list iterator
      IllegalStateException - if neither next nor previous have been called, or remove or add have been called after the last call to next or previous
    • set

      public void set(byte t)
      Replaces the last element returned by nextByte() or previousByte() with the specified element (optional operation). This call can be made only if neither remove() nor add(byte) have been called after the last call to next or previous.
      Parameters:
      t - the element with which to replace the last element returned by next or previous
      Throws:
      UnsupportedOperationException - if the set operation is not supported by this list iterator
      ClassCastException - if the class of the specified element prevents it from being added to this list
      IllegalArgumentException - if some aspect of the specified element prevents it from being added to this list
      IllegalStateException - if neither next nor previous have been called, or remove or add have been called after the last call to next or previous
    • add

      public void add(byte t)
      Inserts the specified element into the list (optional operation). The element is inserted immediately before the element that would be returned by nextByte(), if any, and after the element that would be returned by previousByte(), if any. (If the list contains no elements, the new element becomes the sole element on the list.) The new element is inserted before the implicit cursor: a subsequent call to next would be unaffected, and a subsequent call to previous would return the new element. (This call increases by one the value that would be returned by a call to nextIndex or previousIndex.)
      Parameters:
      t - the element to insert
      Throws:
      UnsupportedOperationException - if the add method is not supported by this list iterator
      ClassCastException - if the class of the specified element prevents it from being added to this list
      IllegalArgumentException - if some aspect of this element prevents it from being added to this list
    • reset

      public void reset()
    • reset

      public void reset(int index)
    • iterator

      public ByteList.ByteListIterator iterator()
      Returns an iterator over elements of type byte.
      Returns:
      this same ByteListIterator.