Interface HeaderElementIterator

All Superinterfaces:
Iterator<Object>
All Known Implementing Classes:
BasicHeaderElementIterator

public interface HeaderElementIterator extends Iterator<Object>
A type-safe iterator for HeaderElement objects.
Since:
4.0
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Indicates whether there is another header element in this iteration.
    Obtains the next header element from this iteration.

    Methods inherited from interface java.util.Iterator

    forEachRemaining, next, remove
  • Method Details

    • hasNext

      boolean hasNext()
      Indicates whether there is another header element in this iteration.
      Specified by:
      hasNext in interface Iterator<Object>
      Returns:
      true if there is another header element, false otherwise
    • nextElement

      HeaderElement nextElement()
      Obtains the next header element from this iteration. This method should only be called while hasNext is true.
      Returns:
      the next header element in this iteration