Package org.apache.http
Interface HeaderElementIterator
-
- All Superinterfaces:
java.util.Iterator<java.lang.Object>
- All Known Implementing Classes:
BasicHeaderElementIterator
public interface HeaderElementIterator extends java.util.Iterator<java.lang.Object>
A type-safe iterator forHeaderElement
objects.- Since:
- 4.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods 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.
-
-
-
Method Detail
-
hasNext
boolean hasNext()
Indicates whether there is another header element in this iteration.- Specified by:
hasNext
in interfacejava.util.Iterator<java.lang.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 whilehasNext
is true.- Returns:
- the next header element in this iteration
-
-