FormattedHeaderpublic interface FormattedHeader implements HeaderAn HTTP header which is already formatted.
For example when headers are received, the original formatting
can be preserved. This allows for the header to be sent without
another formatting step. |
Methods Summary |
---|
public org.apache.http.util.CharArrayBuffer | getBuffer()Obtains the buffer with the formatted header.
The returned buffer MUST NOT be modified.
| public int | getValuePos()Obtains the start of the header value in the {@link #getBuffer buffer}.
By accessing the value in the buffer, creation of a temporary string
can be avoided.
|
|