Uses of Class
org.apache.commons.httpclient.HttpVersion

Packages that use HttpVersion
org.apache.commons.httpclient Classes and interfaces supporting the client side of the HTTP protocol. 
org.apache.commons.httpclient.params HttpClient preferences framework. 
 

Uses of HttpVersion in org.apache.commons.httpclient
 

Fields in org.apache.commons.httpclient declared as HttpVersion
protected  HttpVersion HttpMethodBase.effectiveVersion
          HTTP protocol version used for execution of this method.
static HttpVersion HttpVersion.HTTP_0_9
          HTTP protocol version 0.9
static HttpVersion HttpVersion.HTTP_1_0
          HTTP protocol version 1.0
static HttpVersion HttpVersion.HTTP_1_1
          HTTP protocol version 1.1
 

Methods in org.apache.commons.httpclient that return HttpVersion
 HttpVersion HttpMethodBase.getEffectiveVersion()
          Returns the HTTP version used with this method (may be null if undefined, that is, the method has not been executed)
static HttpVersion HttpVersion.parse(String s)
          Parses the textual representation of the given HTTP protocol version.
 

Methods in org.apache.commons.httpclient with parameters of type HttpVersion
 int HttpVersion.compareTo(HttpVersion anotherVer)
          Compares this HTTP protocol version with another one.
 boolean HttpVersion.equals(HttpVersion version)
          Test if the HTTP protocol version is equal to the given number.
 boolean HttpVersion.greaterEquals(HttpVersion version)
          Test if the HTTP protocol version is greater or equal to the given number.
 boolean HttpVersion.lessEquals(HttpVersion version)
          Test if the HTTP protocol version is less or equal to the given number.
 

Uses of HttpVersion in org.apache.commons.httpclient.params
 

Methods in org.apache.commons.httpclient.params that return HttpVersion
 HttpVersion HttpMethodParams.getVersion()
          Returns HTTP protocol version to be used by the HTTP methods that this collection of parameters applies to.
 

Methods in org.apache.commons.httpclient.params with parameters of type HttpVersion
 void HttpMethodParams.setVersion(HttpVersion version)
          Assigns the HTTP protocol version to be used by the HTTP methods that this collection of parameters applies to.
 



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