Methods in org.apache.http with parameters of type CharArrayBuffer |
static void |
Header.format(CharArrayBuffer buffer,
Header header)
Formats a Header into a header line. |
static void |
HeaderElement.format(CharArrayBuffer buffer,
HeaderElement element)
|
static void |
HttpVersion.format(CharArrayBuffer buffer,
HttpVersion ver)
|
static void |
NameValuePair.format(CharArrayBuffer buffer,
NameValuePair param,
boolean alwaysUseQuotes)
Produces textual representaion of the attribute/value pair using
formatting rules defined in RFC 2616 |
static void |
RequestLine.format(CharArrayBuffer buffer,
RequestLine requestline)
|
static void |
StatusLine.format(CharArrayBuffer buffer,
StatusLine statusline)
|
static void |
HeaderElement.formatAll(CharArrayBuffer buffer,
HeaderElement[] elements)
|
static void |
NameValuePair.formatAll(CharArrayBuffer buffer,
NameValuePair[] params,
boolean alwaysUseQuotes)
Produces textual representaion of the attribute/value pairs using
formatting rules defined in RFC 2616 |
static HeaderElement |
HeaderElement.parse(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
|
static RequestLine |
RequestLine.parse(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
|
static HttpVersion |
HttpVersion.parse(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
Parses the textual representation of the given HTTP protocol version. |
static NameValuePair |
NameValuePair.parse(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
|
static StatusLine |
StatusLine.parse(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
Parses the status line returned from the HTTP server. |
static HeaderElement[] |
HeaderElement.parseAll(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
This parses the value part of a header. |
static NameValuePair[] |
NameValuePair.parseAll(CharArrayBuffer buffer,
int indexFrom,
int indexTo)
|