Uses of Interface
org.apache.http.NameValuePair
-
Packages that use NameValuePair Package Description org.apache.http Core HTTP component APIs and primitives.org.apache.http.entity Core HTTP entity implementations.org.apache.http.message Core HTTP message components, message element parser and writer APIs and their default implementations. -
-
Uses of NameValuePair in org.apache.http
Subinterfaces of NameValuePair in org.apache.http Modifier and Type Interface Description interface
FormattedHeader
An HTTP header which is already formatted.interface
Header
Represents an HTTP header field.Methods in org.apache.http that return NameValuePair Modifier and Type Method Description NameValuePair
HeaderElement. getParameter(int index)
Returns parameter with the given index.NameValuePair
HeaderElement. getParameterByName(java.lang.String name)
Returns the first parameter with the given name.NameValuePair[]
HeaderElement. getParameters()
Returns an array of name / value pairs. -
Uses of NameValuePair in org.apache.http.entity
Fields in org.apache.http.entity declared as NameValuePair Modifier and Type Field Description private NameValuePair[]
ContentType. params
Methods in org.apache.http.entity with parameters of type NameValuePair Modifier and Type Method Description static ContentType
ContentType. create(java.lang.String mimeType, NameValuePair... params)
Creates a new instance ofContentType
with the given parameters.private static ContentType
ContentType. create(java.lang.String mimeType, NameValuePair[] params, boolean strict)
ContentType
ContentType. withParameters(NameValuePair... params)
Creates a new instance with this MIME type and the given parameters.Constructors in org.apache.http.entity with parameters of type NameValuePair Constructor Description ContentType(java.lang.String mimeType, java.nio.charset.Charset charset, NameValuePair[] params)
-
Uses of NameValuePair in org.apache.http.message
Classes in org.apache.http.message that implement NameValuePair Modifier and Type Class Description class
BasicHeader
Implements a basicHeader
.class
BasicNameValuePair
Basic implementation ofNameValuePair
.class
BufferedHeader
This class represents a raw HTTP header whose content is parsed 'on demand' only when the header value needs to be consumed.Fields in org.apache.http.message declared as NameValuePair Modifier and Type Field Description private NameValuePair[]
BasicHeaderElement. parameters
Methods in org.apache.http.message that return NameValuePair Modifier and Type Method Description protected NameValuePair
BasicHeaderValueParser. createNameValuePair(java.lang.String name, java.lang.String value)
Creates a name-value pair.NameValuePair
BasicHeaderElement. getParameter(int index)
NameValuePair
BasicHeaderElement. getParameterByName(java.lang.String name)
NameValuePair[]
BasicHeaderElement. getParameters()
static NameValuePair
BasicHeaderValueParser. parseNameValuePair(java.lang.String value, HeaderValueParser parser)
Parses a name-value-pair with the given parser.NameValuePair
BasicHeaderValueParser. parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor)
NameValuePair
BasicHeaderValueParser. parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor, char[] delimiters)
Deprecated.(4.4) useTokenParser
NameValuePair
HeaderValueParser. parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor)
Parses a name=value specification, where the = and value are optional.static NameValuePair[]
BasicHeaderValueParser. parseParameters(java.lang.String value, HeaderValueParser parser)
Parses parameters with the given parser.NameValuePair[]
BasicHeaderValueParser. parseParameters(CharArrayBuffer buffer, ParserCursor cursor)
NameValuePair[]
HeaderValueParser. parseParameters(CharArrayBuffer buffer, ParserCursor cursor)
Parses a list of name-value pairs.Methods in org.apache.http.message with parameters of type NameValuePair Modifier and Type Method Description protected HeaderElement
BasicHeaderValueParser. createHeaderElement(java.lang.String name, java.lang.String value, NameValuePair[] params)
Creates a header element.protected int
BasicHeaderValueFormatter. estimateNameValuePairLen(NameValuePair nvp)
Estimates the length of a formatted name-value pair.protected int
BasicHeaderValueFormatter. estimateParametersLen(NameValuePair[] nvps)
Estimates the length of formatted parameters.static java.lang.String
BasicHeaderValueFormatter. formatNameValuePair(NameValuePair nvp, boolean quote, HeaderValueFormatter formatter)
Formats a name-value pair.CharArrayBuffer
BasicHeaderValueFormatter. formatNameValuePair(CharArrayBuffer charBuffer, NameValuePair nvp, boolean quote)
CharArrayBuffer
HeaderValueFormatter. formatNameValuePair(CharArrayBuffer buffer, NameValuePair nvp, boolean quote)
Formats one name-value pair, where the value is optional.static java.lang.String
BasicHeaderValueFormatter. formatParameters(NameValuePair[] nvps, boolean quote, HeaderValueFormatter formatter)
Formats a set of parameters.CharArrayBuffer
BasicHeaderValueFormatter. formatParameters(CharArrayBuffer charBuffer, NameValuePair[] nvps, boolean quote)
CharArrayBuffer
HeaderValueFormatter. formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote)
Formats the parameters of a header element.Constructors in org.apache.http.message with parameters of type NameValuePair Constructor Description BasicHeaderElement(java.lang.String name, java.lang.String value, NameValuePair[] parameters)
Constructor with name, value and parameters.
-