Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.apache.http.HttpVersion

Uses of HttpVersion in org.apache.http
 

Fields in org.apache.http declared as HttpVersion
private  HttpVersion StatusLine.httpVersion
          The HTTP-Version.
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
private  HttpVersion RequestLine.httpversion
           
 

Methods in org.apache.http that return HttpVersion
 HttpVersion StatusLine.getHttpVersion()
           
static HttpVersion HttpVersion.parse(org.apache.http.io.CharArrayBuffer buffer, int indexFrom, int indexTo)
          Parses the textual representation of the given HTTP protocol version.
static HttpVersion HttpVersion.parse(java.lang.String s)
           
 HttpVersion HttpMessage.getHttpVersion()
          Returns the HTTP version this message is compatible with.
 HttpVersion RequestLine.getHttpVersion()
           
 

Methods in org.apache.http 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.
static void HttpVersion.format(org.apache.http.io.CharArrayBuffer buffer, HttpVersion ver)
           
static java.lang.String HttpVersion.format(HttpVersion ver)
           
 HttpResponse HttpResponseFactory.newHttpResponse(HttpVersion ver, int status)
           
 

Constructors in org.apache.http with parameters of type HttpVersion
StatusLine(HttpVersion httpVersion, int statusCode, java.lang.String reasonPhrase)
          Default constructor
StatusLine(HttpVersion httpVersion, int statusCode)
           
RequestLine(java.lang.String method, java.lang.String uri, HttpVersion httpversion)