Uses of Class
org.apache.http.ParseException

Packages that use ParseException
org.apache.http Core HTTP components based on the blocking I/O model. 
org.apache.http.entity Common HTTP entity implementations. 
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 Basic 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()
          Parses the value.
 

Uses of ParseException in org.apache.http.entity
 

Methods in org.apache.http.entity that throw ParseException
static ContentType ContentType.get(HttpEntity entity)
          Extracts Content-Type value from HttpEntity exactly as specified by the Content-Type header of the entity.
static ContentType ContentType.getOrDefault(HttpEntity entity)
          Extracts Content-Type value from HttpEntity or returns default value if not explicitly specified.
static ContentType ContentType.parse(String s)
          Parses textual representation of Content-Type value.
 

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

Methods in org.apache.http.impl.io that throw ParseException
protected  HttpResponse DefaultHttpResponseParser.parseHead(SessionInputBuffer sessionBuffer)
           
protected  HttpMessage HttpResponseParser.parseHead(SessionInputBuffer sessionBuffer)
          Deprecated.  
protected  HttpRequest DefaultHttpRequestParser.parseHead(SessionInputBuffer sessionBuffer)
           
protected abstract  T 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 HttpRequestParser.parseHead(SessionInputBuffer sessionBuffer)
          Deprecated.  
 

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

Methods in org.apache.http.impl.nio.codecs that throw ParseException
protected  HttpResponse DefaultHttpResponseParser.createMessage(CharArrayBuffer buffer)
           
protected  HttpMessage HttpResponseParser.createMessage(CharArrayBuffer buffer)
          Deprecated.  
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 HttpRequestParser.createMessage(CharArrayBuffer buffer)
          Deprecated.  
 

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()
           
 Object BasicTokenIterator.next()
          Returns the next token.
 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(String value, HeaderValueParser parser)
          Parses elements with the given parser.
 Header LineParser.parseHeader(CharArrayBuffer buffer)
          Creates a header from a line.
 Header BasicLineParser.parseHeader(CharArrayBuffer buffer)
           
static Header BasicLineParser.parseHeader(String value, LineParser parser)
           
 HeaderElement HeaderValueParser.parseHeaderElement(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a single header element.
static HeaderElement BasicHeaderValueParser.parseHeaderElement(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(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(String value, HeaderValueParser parser)
          Parses parameters with the given parser.
 ProtocolVersion LineParser.parseProtocolVersion(CharArrayBuffer buffer, ParserCursor cursor)
          Parses the textual representation of a protocol version.
 ProtocolVersion BasicLineParser.parseProtocolVersion(CharArrayBuffer buffer, ParserCursor cursor)
           
static ProtocolVersion BasicLineParser.parseProtocolVersion(String value, LineParser parser)
           
 RequestLine LineParser.parseRequestLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a request line.
 RequestLine BasicLineParser.parseRequestLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a request line.
static RequestLine BasicLineParser.parseRequestLine(String value, LineParser parser)
           
 StatusLine LineParser.parseStatusLine(CharArrayBuffer buffer, ParserCursor cursor)
          Parses a status line.
 StatusLine BasicLineParser.parseStatusLine(CharArrayBuffer buffer, ParserCursor cursor)
           
static StatusLine BasicLineParser.parseStatusLine(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 String EntityUtils.getContentCharSet(HttpEntity entity)
          Deprecated. (4.1.3) use ContentType.getOrDefault(HttpEntity)
static String EntityUtils.getContentMimeType(HttpEntity entity)
          Deprecated. (4.1.3) use ContentType.getOrDefault(HttpEntity)
static String EntityUtils.toString(HttpEntity entity)
          Read the contents of an entity and return it as a String.
static String EntityUtils.toString(HttpEntity entity, Charset defaultCharset)
          Get the entity content as a String, using the provided default character set if none is found in the entity.
static String EntityUtils.toString(HttpEntity entity, String defaultCharset)
          Get the entity content as a String, using the provided default character set if none is found in the entity.
 



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