Package org.apache.http
Interface HeaderElementIterator
-
- All Known Implementing Classes:
BasicHeaderElementIterator
public interface HeaderElementIterator extends Iterator<Object>
A type-safe iterator forHeaderElementobjects.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanhasNext()Indicates whether there is another header element in this iteration.HeaderElementnextElement()Obtains the next header element from this iteration.-
Methods inherited from interface java.util.Iterator
forEachRemaining, next, remove
-
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Indicates whether there is another header element in this iteration.
-
nextElement
HeaderElement nextElement()
Obtains the next header element from this iteration. This method should only be called whilehasNextis true.- Returns:
- the next header element in this iteration
-
-