Uses of Interface
org.apache.http.NameValuePair

Packages that use NameValuePair
org.apache.http The core interfaces and classes of the HTTP components. 
org.apache.http.message A selection of HTTP message implementations. 
 

Uses of NameValuePair in org.apache.http
 

Methods in org.apache.http that return NameValuePair
 NameValuePair HeaderElement.getParameter(int index)
           
 NameValuePair HeaderElement.getParameterByName(java.lang.String name)
           
 NameValuePair[] HeaderElement.getParameters()
           
 

Uses of NameValuePair in org.apache.http.message
 

Classes in org.apache.http.message that implement NameValuePair
 class BasicNameValuePair
          A simple class encapsulating an attribute/value pair.
 

Methods in org.apache.http.message that return NameValuePair
protected  NameValuePair BasicHeaderValueParser.createNameValuePair(java.lang.String name, java.lang.String value)
          Creates a name-value pair.
 NameValuePair BasicHeaderElement.getParameter(int index)
          Obtains the parameter with the given index.
 NameValuePair BasicHeaderElement.getParameterByName(java.lang.String name)
          Returns parameter with the given name, if found.
 NameValuePair[] BasicHeaderElement.getParameters()
          Get parameters, if any.
 NameValuePair BasicHeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor)
           
 NameValuePair HeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a name=value specification, where the = and value are optional.
 NameValuePair BasicHeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor, char[] delimiters)
           
static NameValuePair BasicHeaderValueParser.parseNameValuePair(java.lang.String value, HeaderValueParser parser)
          Parses a name-value-pair 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.
static NameValuePair[] BasicHeaderValueParser.parseParameters(java.lang.String value, HeaderValueParser parser)
          Parses parameters with the given parser.
 

Methods in org.apache.http.message with parameters of type NameValuePair
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.
 CharArrayBuffer BasicHeaderValueFormatter.formatNameValuePair(CharArrayBuffer buffer, 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.formatNameValuePair(NameValuePair nvp, boolean quote, HeaderValueFormatter formatter)
          Formats a name-value pair.
 CharArrayBuffer BasicHeaderValueFormatter.formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote)
           
 CharArrayBuffer HeaderValueFormatter.formatParameters(CharArrayBuffer buffer, NameValuePair[] nvps, boolean quote)
          Formats the parameters of a header element.
static java.lang.String BasicHeaderValueFormatter.formatParameters(NameValuePair[] nvps, boolean quote, HeaderValueFormatter formatter)
          Formats a set of parameters.
 

Constructors in org.apache.http.message with parameters of type NameValuePair
BasicHeaderElement(java.lang.String name, java.lang.String value, NameValuePair[] parameters)
          Constructor with name, value and parameters.
 



Copyright © 2005-2008 Apache Software Foundation. All Rights Reserved.