Uses of Interface
org.apache.http.NameValuePair
Packages that use NameValuePair
Package
Description
Core HTTP component APIs and primitives.
Core HTTP entity implementations.
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.httpModifier and TypeInterfaceDescriptioninterfaceAn HTTP header which is already formatted.interfaceRepresents an HTTP header field.Methods in org.apache.http that return NameValuePairModifier and TypeMethodDescriptionHeaderElement.getParameter(int index) Returns parameter with the given index.HeaderElement.getParameterByName(String name) Returns the first parameter with the given name.HeaderElement.getParameters()Returns an array of name / value pairs. -
Uses of NameValuePair in org.apache.http.entity
Methods in org.apache.http.entity with parameters of type NameValuePairModifier and TypeMethodDescriptionstatic ContentTypeContentType.create(String mimeType, NameValuePair... params) Creates a new instance ofContentTypewith the given parameters.ContentType.withParameters(NameValuePair... params) Creates a new instance with this MIME type and the given parameters. -
Uses of NameValuePair in org.apache.http.message
Classes in org.apache.http.message that implement NameValuePairModifier and TypeClassDescriptionclassImplements a basicHeader.classBasic implementation ofNameValuePair.classThis class represents a raw HTTP header whose content is parsed 'on demand' only when the header value needs to be consumed.Methods in org.apache.http.message that return NameValuePairModifier and TypeMethodDescriptionprotected NameValuePairBasicHeaderValueParser.createNameValuePair(String name, String value) Creates a name-value pair.BasicHeaderElement.getParameter(int index) BasicHeaderElement.getParameterByName(String name) BasicHeaderElement.getParameters()static NameValuePairBasicHeaderValueParser.parseNameValuePair(String value, HeaderValueParser parser) Parses a name-value-pair with the given parser.BasicHeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor) BasicHeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor, char[] delimiters) Deprecated.HeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor) Parses a name=value specification, where the = and value are optional.static NameValuePair[]BasicHeaderValueParser.parseParameters(String value, HeaderValueParser parser) Parses parameters with the given parser.BasicHeaderValueParser.parseParameters(CharArrayBuffer buffer, ParserCursor cursor) HeaderValueParser.parseParameters(CharArrayBuffer buffer, ParserCursor cursor) Parses a list of name-value pairs.Methods in org.apache.http.message with parameters of type NameValuePairModifier and TypeMethodDescriptionprotected HeaderElementBasicHeaderValueParser.createHeaderElement(String name, String value, NameValuePair[] params) Creates a header element.protected intBasicHeaderValueFormatter.estimateNameValuePairLen(NameValuePair nvp) Estimates the length of a formatted name-value pair.protected intBasicHeaderValueFormatter.estimateParametersLen(NameValuePair[] nvps) Estimates the length of formatted parameters.static StringBasicHeaderValueFormatter.formatNameValuePair(NameValuePair nvp, boolean quote, HeaderValueFormatter formatter) Formats a name-value pair.BasicHeaderValueFormatter.formatNameValuePair(CharArrayBuffer charBuffer, NameValuePair nvp, boolean quote) HeaderValueFormatter.formatNameValuePair(CharArrayBuffer buffer, NameValuePair nvp, boolean quote) Formats one name-value pair, where the value is optional.static StringBasicHeaderValueFormatter.formatParameters(NameValuePair[] nvps, boolean quote, HeaderValueFormatter formatter) Formats a set of parameters.BasicHeaderValueFormatter.formatParameters(CharArrayBuffer charBuffer, NameValuePair[] nvps, boolean quote) 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 NameValuePairModifierConstructorDescriptionBasicHeaderElement(String name, String value, NameValuePair[] parameters) Constructor with name, value and parameters.
TokenParser