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.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
 NameValuePair BasicHeaderElement.getParameterByName(java.lang.String name)
          Returns parameter with the given name, if found.
 NameValuePair[] BasicHeaderElement.getParameters()
          Get parameters, if any.
static NameValuePair BasicNameValuePair.parse(CharArrayBuffer buffer, int indexFrom, int indexTo)
           
static NameValuePair BasicNameValuePair.parse(java.lang.String s)
           
static NameValuePair[] BasicNameValuePair.parseAll(CharArrayBuffer buffer, int indexFrom, int indexTo)
           
static NameValuePair[] BasicNameValuePair.parseAll(java.lang.String s)
           
 

Methods in org.apache.http.message with parameters of type NameValuePair
static void BasicNameValuePair.format(CharArrayBuffer buffer, NameValuePair param, boolean alwaysUseQuotes)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
static java.lang.String BasicNameValuePair.format(NameValuePair param, boolean alwaysUseQuotes)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
static void BasicNameValuePair.formatAll(CharArrayBuffer buffer, NameValuePair[] params, boolean alwaysUseQuotes)
          Produces textual representaion of the attribute/value pairs using formatting rules defined in RFC 2616
static java.lang.String BasicNameValuePair.formatAll(NameValuePair[] params, boolean alwaysUseQuotes)
          Produces textual representaion of the attribute/value pair using formatting rules defined in RFC 2616
 

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-2009 Apache Software Foundation. All Rights Reserved.