No examples for this method. 
     
 
     
      Frequently called with: [Clear]  
     
 
      
    
 
     
     
     -1 
    
 
     
     
   | java.lang.Object | |||
| ↳ | org.apache.http.entity.AbstractHttpEntity | ||
| ↳ | org.apache.http.entity.StringEntity | ||
| ↳ | org.apache.http.client.entity.UrlEncodedFormEntity | ||
An entity composed of a list of url-encoded pairs. This is typically useful while sending an HTTP POST request.
| [Expand] 
           Inherited Fields
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class org.apache.http.entity.StringEntity | |||||||||||
|  From class org.apache.http.entity.AbstractHttpEntity | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  | 
           Constructs a new 
            UrlEncodedFormEntitywith the list of parameters in the specified encoding. | ||||||||||
|  | 
           Constructs a new 
            UrlEncodedFormEntitywith the list of parameters with the default encoding ofDEFAULT_CONTENT_CHARSET | ||||||||||
| [Expand] 
           Inherited Methods
           | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
|  From class org.apache.http.entity.StringEntity | |||||||||||
|  From class org.apache.http.entity.AbstractHttpEntity | |||||||||||
|  From class java.lang.Object | |||||||||||
|  From interface org.apache.http.HttpEntity | |||||||||||
Constructs a new UrlEncodedFormEntity with the list of parameters in the specified encoding.
| parameters | list of name/value pairs | 
|---|---|
| encoding | encoding the name/value pairs be encoded with | 
| UnsupportedEncodingException | if the encoding isn't supported | 
|---|
Constructs a new UrlEncodedFormEntity with the list of parameters with the default encoding of DEFAULT_CONTENT_CHARSET
| parameters | list of name/value pairs | 
|---|
| UnsupportedEncodingException | if the default encoding isn't supported | 
|---|