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.impl.execchain |
HTTP request execution chain APIs.
|
org.apache.http.message |
Core HTTP message components, message element parser
and writer APIs and their default implementations.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and Description |
---|---|
protected TokenIterator |
DefaultConnectionReuseStrategy.createTokenIterator(HeaderIterator hit)
Creates a token iterator from a header iterator.
|
Modifier and Type | Method and Description |
---|---|
HeaderIterator |
HttpResponseProxy.headerIterator() |
HeaderIterator |
HttpResponseProxy.headerIterator(java.lang.String name) |
Modifier and Type | Class and Description |
---|---|
class |
BasicHeaderIterator
Basic implementation of a
HeaderIterator . |
class |
BasicListHeaderIterator
Implementation of a
HeaderIterator based on a List . |
Modifier and Type | Field and Description |
---|---|
protected HeaderIterator |
BasicTokenIterator.headerIt
The iterator from which to obtain the next header.
|
Modifier and Type | Method and 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.
|
Constructor and Description |
---|
BasicHeaderElementIterator(HeaderIterator headerIterator) |
BasicHeaderElementIterator(HeaderIterator headerIterator,
HeaderValueParser parser)
Creates a new instance of BasicHeaderElementIterator
|
BasicTokenIterator(HeaderIterator headerIterator)
Creates a new instance of
BasicTokenIterator . |