Uses of Interface
org.apache.http.HeaderIterator
-
Packages that use HeaderIterator Package Description org.apache.http Core HTTP component APIs and primitives.org.apache.http.impl Default implementations of HTTP connections for synchronous, blocking communication.org.apache.http.message Core HTTP message components, message element parser and writer APIs and their default implementations. -
-
Uses of HeaderIterator in org.apache.http
Methods in org.apache.http that return HeaderIterator Modifier and Type Method Description HeaderIterator
HttpMessage. headerIterator()
Returns an iterator of all the headers.HeaderIterator
HttpMessage. headerIterator(java.lang.String name)
Returns an iterator of the headers with a given name. -
Uses of HeaderIterator in org.apache.http.impl
Methods in org.apache.http.impl with parameters of type HeaderIterator Modifier and Type Method Description protected TokenIterator
DefaultConnectionReuseStrategy. createTokenIterator(HeaderIterator hit)
Creates a token iterator from a header iterator. -
Uses of HeaderIterator in org.apache.http.message
Classes in org.apache.http.message that implement HeaderIterator Modifier and Type Class Description class
BasicHeaderIterator
Basic implementation of aHeaderIterator
.class
BasicListHeaderIterator
Implementation of aHeaderIterator
based on aList
.Fields in org.apache.http.message declared as HeaderIterator Modifier and Type Field Description private HeaderIterator
BasicHeaderElementIterator. headerIt
protected HeaderIterator
BasicTokenIterator. headerIt
The iterator from which to obtain the next header.Methods in org.apache.http.message that return HeaderIterator Modifier and Type Method Description HeaderIterator
AbstractHttpMessage. headerIterator()
HeaderIterator
AbstractHttpMessage. headerIterator(java.lang.String name)
HeaderIterator
HeaderGroup. iterator()
Returns an iterator over this group of headers.HeaderIterator
HeaderGroup. iterator(java.lang.String name)
Returns an iterator over the headers with a given name in this group.Constructors in org.apache.http.message with parameters of type HeaderIterator Constructor Description BasicHeaderElementIterator(HeaderIterator headerIterator)
BasicHeaderElementIterator(HeaderIterator headerIterator, HeaderValueParser parser)
Creates a new instance of BasicHeaderElementIteratorBasicTokenIterator(HeaderIterator headerIterator)
Creates a new instance ofBasicTokenIterator
.
-