Uses of Class
org.apache.http.ParseException

Packages that use ParseException
org.apache.http The core HTTP components (HttpCore). 
org.apache.http.impl.io Default implementations for interfaces in org.apache.http.io
org.apache.http.impl.nio.codecs Default implementations for interfaces in org.apache.http.nio.codecs
org.apache.http.message A selection of HTTP message implementations. 
org.apache.http.util Resizable byte and char arrays and various utility classes with static helper methods. 
 

Uses of ParseException in org.apache.http
 

Methods in org.apache.http that throw ParseException
 HeaderElement[] Header.getElements()
           
 

Uses of ParseException in org.apache.http.impl.io
 

Methods in org.apache.http.impl.io that throw ParseException
protected abstract  HttpMessage AbstractMessageParser.parseHead(SessionInputBuffer sessionBuffer)
          Subclasses must override this method to generate an instance of HttpMessage based on the initial input from the session buffer.
protected  HttpMessage HttpResponseParser.parseHead(SessionInputBuffer sessionBuffer)
           
protected  HttpMessage HttpRequestParser.parseHead(SessionInputBuffer sessionBuffer)
           
 

Uses of ParseException in org.apache.http.impl.nio.codecs
 

Methods in org.apache.http.impl.nio.codecs that throw ParseException
protected  HttpRequest DefaultHttpRequestParser.createMessage(CharArrayBuffer buffer)
           
protected abstract  T AbstractMessageParser.createMessage(CharArrayBuffer buffer)
          Creates HttpMessage instance based on the content of the input buffer containing the first line of the incoming HTTP message.
protected  HttpMessage HttpResponseParser.createMessage(CharArrayBuffer buffer)
          Deprecated.  
protected  HttpMessage HttpRequestParser.createMessage(CharArrayBuffer buffer)
          Deprecated.  
protected  HttpResponse DefaultHttpResponseParser.createMessage(CharArrayBuffer buffer)
           
 

Uses of ParseException in org.apache.http.message
 

Methods in org.apache.http.message that throw ParseException
protected  int BasicTokenIterator.findNext(int from)
          Determines the next token.
 HeaderElement[] BufferedHeader.getElements()
           
 HeaderElement[] BasicHeader.getElements()
           
 java.lang.Object BasicTokenIterator.next()
          Returns the next token.
 java.lang.String BasicTokenIterator.nextToken()
          Obtains the next token from this iteration.
 HeaderElement[] HeaderValueParser.parseElements(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a header value into elements.
static HeaderElement[] BasicHeaderValueParser.parseElements(java.lang.String value, HeaderValueParser parser)
          Parses elements with the given parser.
 Header BasicLineParser.parseHeader(CharArrayBuffer buffer)
           
 Header LineParser.parseHeader(CharArrayBuffer buffer)
          Creates a header from a line.
static Header BasicLineParser.parseHeader(java.lang.String value, LineParser parser)
           
 HeaderElement HeaderValueParser.parseHeaderElement(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a single header element.
static HeaderElement BasicHeaderValueParser.parseHeaderElement(java.lang.String value, HeaderValueParser parser)
          Parses an element with the given parser.
 NameValuePair HeaderValueParser.parseNameValuePair(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a name=value specification, where the = and value are optional.
static NameValuePair BasicHeaderValueParser.parseNameValuePair(java.lang.String value, HeaderValueParser parser)
          Parses a name-value-pair with the given parser.
 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.
 ProtocolVersion BasicLineParser.parseProtocolVersion(CharArrayBuffer buffer, ParserCursor cursor)
           
 ProtocolVersion LineParser.parseProtocolVersion(CharArrayBuffer buffer, ParserCursor cursor)
          Parses the textual representation of a protocol version.
static ProtocolVersion BasicLineParser.parseProtocolVersion(java.lang.String value, LineParser parser)
           
 RequestLine BasicLineParser.parseRequestLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a request line.
 RequestLine LineParser.parseRequestLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a request line.
static RequestLine BasicLineParser.parseRequestLine(java.lang.String value, LineParser parser)
           
 StatusLine BasicLineParser.parseStatusLine(CharArrayBuffer buffer, ParserCursor cursor)
           
 StatusLine LineParser.parseStatusLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a status line.
static StatusLine BasicLineParser.parseStatusLine(java.lang.String value, LineParser parser)
           
 

Constructors in org.apache.http.message that throw ParseException
BufferedHeader(CharArrayBuffer buffer)
          Creates a new header from a buffer.
 

Uses of ParseException in org.apache.http.util
 

Methods in org.apache.http.util that throw ParseException
static java.lang.String EntityUtils.getContentCharSet(HttpEntity entity)
          Obtains character set of the entity, if known.
static java.lang.String EntityUtils.getContentMimeType(HttpEntity entity)
          Obtains mime type of the entity, if known.
static java.lang.String EntityUtils.toString(HttpEntity entity)
          Read the contents of an entity and return it as a String.
static java.lang.String EntityUtils.toString(HttpEntity entity, java.lang.String defaultCharset)
          Get the entity content as a String, using the provided default character set if none is found in the entity.
 



Copyright © 2005-2011 The Apache Software Foundation. All Rights Reserved.