| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use HttpEntity | |
|---|---|
| org.apache.http | Core HTTP component APIs and primitives. | 
| org.apache.http.entity | Core HTTP entity implementations. | 
| org.apache.http.impl | Default implementations of HTTP connections for synchronous, blocking communication. | 
| org.apache.http.impl.entity | Default implementations of entity content strategies. | 
| org.apache.http.message | Core HTTP message components, message element parser and writer APIs and their default implementations. | 
| org.apache.http.util | Core utility classes. | 
| Uses of HttpEntity in org.apache.http | 
|---|
| Methods in org.apache.http that return HttpEntity | |
|---|---|
|  HttpEntity | HttpEntityEnclosingRequest.getEntity()Returns the entity associated with this request. | 
|  HttpEntity | HttpResponse.getEntity()Obtains the message entity of this response, if any. | 
| Methods in org.apache.http with parameters of type HttpEntity | |
|---|---|
|  void | HttpEntityEnclosingRequest.setEntity(HttpEntity entity)Associates the entity with this request. | 
|  void | HttpResponse.setEntity(HttpEntity entity)Associates a response entity with this response. | 
| Uses of HttpEntity in org.apache.http.entity | 
|---|
| Classes in org.apache.http.entity that implement HttpEntity | |
|---|---|
|  class | AbstractHttpEntityAbstract base class for entities. | 
|  class | BasicHttpEntityA generic streamed, non-repeatable entity that obtains its content from an InputStream. | 
|  class | BufferedHttpEntityA wrapping entity that buffers it content if necessary. | 
|  class | ByteArrayEntityA self contained, repeatable entity that obtains its content from a byte array. | 
|  class | EntityTemplateEntity that delegates the process of content generation to a ContentProducer. | 
|  class | FileEntityA self contained, repeatable entity that obtains its content from a file. | 
|  class | HttpEntityWrapperBase class for wrapping entities. | 
|  class | InputStreamEntityA streamed, non-repeatable entity that obtains its content from an InputStream. | 
|  class | SerializableEntityA streamed entity that obtains its content from a Serializable. | 
|  class | StringEntityA self contained, repeatable entity that obtains its content from a String. | 
| Fields in org.apache.http.entity declared as HttpEntity | |
|---|---|
| protected  HttpEntity | HttpEntityWrapper.wrappedEntityThe wrapped entity. | 
| Methods in org.apache.http.entity with parameters of type HttpEntity | |
|---|---|
| static ContentType | ContentType.get(HttpEntity entity)Extracts Content-Typevalue fromHttpEntityexactly as
 specified by theContent-Typeheader of the entity. | 
| static ContentType | ContentType.getLenient(HttpEntity entity)Extracts Content-Typevalue fromHttpEntity. | 
| static ContentType | ContentType.getLenientOrDefault(HttpEntity entity)Extracts Content-Typevalue fromHttpEntityor returns the default valueContentType.DEFAULT_TEXTif not explicitly specified or incorrect (could not be parsed). | 
| static ContentType | ContentType.getOrDefault(HttpEntity entity)Extracts Content-Typevalue fromHttpEntityor returns the default valueContentType.DEFAULT_TEXTif not explicitly specified. | 
| Constructors in org.apache.http.entity with parameters of type HttpEntity | |
|---|---|
| BufferedHttpEntity(HttpEntity entity)Creates a new buffered entity wrapper. | |
| HttpEntityWrapper(HttpEntity wrappedEntity)Creates a new entity wrapper. | |
| Uses of HttpEntity in org.apache.http.impl | 
|---|
| Methods in org.apache.http.impl that return HttpEntity | |
|---|---|
| protected  HttpEntity | BHttpConnectionBase.prepareInput(HttpMessage message) | 
| Uses of HttpEntity in org.apache.http.impl.entity | 
|---|
| Methods in org.apache.http.impl.entity that return HttpEntity | |
|---|---|
|  HttpEntity | EntityDeserializer.deserialize(SessionInputBuffer inBuffer,
            HttpMessage message)Deprecated. Creates an HttpEntitybased on properties of the given message. | 
| Methods in org.apache.http.impl.entity with parameters of type HttpEntity | |
|---|---|
|  void | EntitySerializer.serialize(SessionOutputBuffer outbuffer,
          HttpMessage message,
          HttpEntity entity)Deprecated. Writes out the content of the given HTTP entity to the session output buffer based on properties of the given HTTP message. | 
| Uses of HttpEntity in org.apache.http.message | 
|---|
| Methods in org.apache.http.message that return HttpEntity | |
|---|---|
|  HttpEntity | BasicHttpResponse.getEntity() | 
|  HttpEntity | BasicHttpEntityEnclosingRequest.getEntity() | 
| Methods in org.apache.http.message with parameters of type HttpEntity | |
|---|---|
|  void | BasicHttpResponse.setEntity(HttpEntity entity) | 
|  void | BasicHttpEntityEnclosingRequest.setEntity(HttpEntity entity) | 
| Uses of HttpEntity in org.apache.http.util | 
|---|
| Methods in org.apache.http.util with parameters of type HttpEntity | |
|---|---|
| static void | EntityUtils.consume(HttpEntity entity)Ensures that the entity content is fully consumed and the content stream, if exists, is closed. | 
| static void | EntityUtils.consumeQuietly(HttpEntity entity)Ensures that the entity content is fully consumed and the content stream, if exists, is closed. | 
| 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 byte[] | EntityUtils.toByteArray(HttpEntity entity)Read the contents of an entity and return it as a byte array. | 
| 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. | 
| static void | EntityUtils.updateEntity(HttpResponse response,
             HttpEntity entity)Updates an entity in a response by first consuming an existing entity, then setting the new one. | 
| 
 | ||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||