Interface HeaderElementIterator

All Superinterfaces:
Iterator
All Known Implementing Classes:
BasicHeaderElementIterator

public interface HeaderElementIterator
extends Iterator
A type-safe iterator for HeaderElement objects.
Version:
$Revision: 584542 $
  • Method Summary

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

    Methods inherited from interface java.util.Iterator

    next, remove
  • Method Details

    • hasNext

      boolean hasNext()
      Indicates whether there is another header element in this iteration.
      Specified by:
      hasNext in interface Iterator
      Returns:
      true if there is another header element, false otherwise
      See Also:
      Iterator.next()
    • 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