Uses of Class
org.apache.hc.core5.http.ContentType
Packages that use ContentType
Package
Description
Apache Bench (AB) clone based on HttpCore.
Core HTTP transport component APIs.
Default implementations of core HTTP APIs.
HTTP message entity APIs based on the classic (blocking) I/O model.
Support classes for the classic (blocking) I/O model.
HTTP message entity APIs based on the asynchronous (non-blocking) I/O model.
Support classes for the asynchronous I/O model.
Support classes for the asynchronous I/O model that emulate
behavior of the classic (blocking) I/O model.
-
Uses of ContentType in org.apache.hc.core5.benchmark
Fields in org.apache.hc.core5.benchmark declared as ContentTypeModifier and TypeFieldDescriptionprivate ContentType
BenchmarkConfig.Builder.contentType
private final ContentType
BenchmarkConfig.contentType
Methods in org.apache.hc.core5.benchmark that return ContentTypeMethods in org.apache.hc.core5.benchmark with parameters of type ContentTypeModifier and TypeMethodDescriptionBenchmarkConfig.Builder.setContentType
(ContentType contentType) Constructors in org.apache.hc.core5.benchmark with parameters of type ContentTypeModifierConstructorDescriptionprivate
BenchmarkConfig
(URI uri, int requests, int concurrencyLevel, TimeValue timeLimit, Timeout socketTimeout, File payloadFile, ContentType contentType, int verbosity, boolean headInsteadOfGet, String[] headers, boolean keepAlive, String method, boolean useChunking, boolean useExpectContinue, boolean useAcceptGZip, String payloadText, String soapAction, boolean forceHttp2, boolean disableSSLVerification, String trustStorePath, String identityStorePath, String trustStorePassword, String identityStorePassword) -
Uses of ContentType in org.apache.hc.core5.http
Fields in org.apache.hc.core5.http declared as ContentTypeModifier and TypeFieldDescriptionstatic final ContentType
ContentType.APPLICATION_ATOM_XML
static final ContentType
ContentType.APPLICATION_FORM_URLENCODED
static final ContentType
ContentType.APPLICATION_JSON
static final ContentType
ContentType.APPLICATION_NDJSON
Public constant media type forapplication/x-ndjson
.static final ContentType
ContentType.APPLICATION_OCTET_STREAM
static final ContentType
ContentType.APPLICATION_PDF
Public constant media type forapplication/pdf
.static final ContentType
ContentType.APPLICATION_PROBLEM_JSON
Public constant media type forapplication/problem+json
.static final ContentType
ContentType.APPLICATION_PROBLEM_XML
Public constant media type forapplication/problem+xml
.static final ContentType
ContentType.APPLICATION_RSS_XML
Public constant media type forapplication/rss+xml
.static final ContentType
ContentType.APPLICATION_SOAP_XML
static final ContentType
ContentType.APPLICATION_SVG_XML
static final ContentType
ContentType.APPLICATION_XHTML_XML
static final ContentType
ContentType.APPLICATION_XML
static final ContentType
ContentType.DEFAULT_BINARY
static final ContentType
ContentType.DEFAULT_TEXT
static final ContentType
ContentType.IMAGE_BMP
static final ContentType
ContentType.IMAGE_GIF
static final ContentType
ContentType.IMAGE_JPEG
static final ContentType
ContentType.IMAGE_PNG
static final ContentType
ContentType.IMAGE_SVG
static final ContentType
ContentType.IMAGE_TIFF
static final ContentType
ContentType.IMAGE_WEBP
static final ContentType
ContentType.MULTIPART_FORM_DATA
static final ContentType
ContentType.MULTIPART_MIXED
Public constant media type formultipart/mixed
.static final ContentType
ContentType.MULTIPART_RELATED
Public constant media type formultipart/related
.static final ContentType
ContentType.TEXT_EVENT_STREAM
Public constant media type fortext/event-stream
.static final ContentType
ContentType.TEXT_HTML
static final ContentType
ContentType.TEXT_MARKDOWN
Public constant media type fortext/markdown
.static final ContentType
ContentType.TEXT_PLAIN
static final ContentType
ContentType.TEXT_XML
static final ContentType
ContentType.WILDCARD
Fields in org.apache.hc.core5.http with type parameters of type ContentTypeModifier and TypeFieldDescriptionprivate static final Map
<String, ContentType> ContentType.CONTENT_TYPE_MAP
Deprecated.To be removed in 6.0Methods in org.apache.hc.core5.http that return ContentTypeModifier and TypeMethodDescriptionstatic ContentType
Creates a new instance ofContentType
without a charset.static ContentType
Creates a new instance ofContentType
.static ContentType
Creates a new instance ofContentType
.static ContentType
ContentType.create
(String mimeType, NameValuePair... params) Creates a new instance ofContentType
with the given parameters.private static ContentType
ContentType.create
(String mimeType, NameValuePair[] params, boolean strict) private static ContentType
ContentType.create
(HeaderElement helem, boolean strict) static ContentType
ContentType.getByMimeType
(String mimeType) Deprecated.Do not use.static ContentType
ContentType.parse
(CharSequence s) Parses textual representation ofContent-Type
value.private static ContentType
ContentType.parse
(CharSequence s, boolean strict) static ContentType
ContentType.parseLenient
(CharSequence s) Parses textual representation ofContent-Type
value ignoring invalid charsets.ContentType.withCharset
(String charset) Creates a new instance with this MIME type and the given Charset name.ContentType.withCharset
(Charset charset) Creates a new instance with this MIME type and the given Charset.ContentType.withParameters
(NameValuePair... params) Creates a new instance with this MIME type and the given parameters.Methods in org.apache.hc.core5.http with parameters of type ContentTypeModifier and TypeMethodDescriptionstatic Charset
ContentType.getCharset
(ContentType contentType, Charset defaultCharset) Gets a ContentType's Charset if neither are null, otherwise, return the givendefaultCharset
.boolean
ContentType.isSameMimeType
(ContentType contentType) -
Uses of ContentType in org.apache.hc.core5.http.impl
Fields in org.apache.hc.core5.http.impl declared as ContentTypeConstructors in org.apache.hc.core5.http.impl with parameters of type ContentType -
Uses of ContentType in org.apache.hc.core5.http.io.entity
Fields in org.apache.hc.core5.http.io.entity with type parameters of type ContentTypeModifier and TypeFieldDescriptionprivate static final Map
<String, ContentType> EntityUtils.CONTENT_TYPE_MAP
Methods in org.apache.hc.core5.http.io.entity with parameters of type ContentTypeModifier and TypeMethodDescriptionstatic HttpEntity
HttpEntities.create
(byte[] content, ContentType contentType) static HttpEntity
HttpEntities.create
(byte[] content, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.create
(File content, ContentType contentType) static HttpEntity
HttpEntities.create
(File content, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.create
(Serializable serializable, ContentType contentType) static HttpEntity
HttpEntities.create
(Serializable serializable, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.create
(String content, ContentType contentType) static HttpEntity
HttpEntities.create
(String content, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.create
(Path content, ContentType contentType) static HttpEntity
HttpEntities.create
(Path content, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.create
(IOCallback<OutputStream> callback, ContentType contentType) static HttpEntity
HttpEntities.create
(IOCallback<OutputStream> callback, ContentType contentType, Header... trailers) static HttpEntity
HttpEntities.createGzipped
(byte[] content, ContentType contentType) static HttpEntity
HttpEntities.createGzipped
(File content, ContentType contentType) static HttpEntity
HttpEntities.createGzipped
(Serializable serializable, ContentType contentType) static HttpEntity
HttpEntities.createGzipped
(String content, ContentType contentType) static HttpEntity
HttpEntities.createGzipped
(Path content, ContentType contentType) static HttpEntity
HttpEntities.createGzipped
(IOCallback<OutputStream> callback, ContentType contentType) private static String
EntityUtils.toString
(HttpEntity entity, ContentType contentType, int maxResultLength) Constructors in org.apache.hc.core5.http.io.entity with parameters of type ContentTypeModifierConstructorDescriptionprotected
AbstractHttpEntity
(ContentType contentType, String contentEncoding) protected
AbstractHttpEntity
(ContentType contentType, String contentEncoding, boolean chunked) BasicHttpEntity
(InputStream content, long length, ContentType contentType) BasicHttpEntity
(InputStream content, long length, ContentType contentType, String contentEncoding) BasicHttpEntity
(InputStream content, long length, ContentType contentType, String contentEncoding, boolean chunked) BasicHttpEntity
(InputStream content, ContentType contentType) BasicHttpEntity
(InputStream content, ContentType contentType, boolean chunked) BasicHttpEntity
(InputStream content, ContentType contentType, String contentEncoding) ByteArrayEntity
(byte[] b, int off, int len, ContentType contentType) ByteArrayEntity
(byte[] b, int off, int len, ContentType contentType, boolean chunked) ByteArrayEntity
(byte[] b, int off, int len, ContentType contentType, String contentEncoding) ByteArrayEntity
(byte[] b, int off, int len, ContentType contentType, String contentEncoding, boolean chunked) ByteArrayEntity
(byte[] b, ContentType contentType) ByteArrayEntity
(byte[] b, ContentType contentType, boolean chunked) ByteArrayEntity
(byte[] b, ContentType contentType, String contentEncoding) ByteArrayEntity
(byte[] b, ContentType contentType, String contentEncoding, boolean chunked) ByteBufferEntity
(ByteBuffer buffer, ContentType contentType) ByteBufferEntity
(ByteBuffer buffer, ContentType contentType, String contentEncoding) EntityTemplate
(long contentLength, ContentType contentType, String contentEncoding, IOCallback<OutputStream> callback) FileEntity
(File file, ContentType contentType) FileEntity
(File file, ContentType contentType, String contentEncoding) InputStreamEntity
(InputStream inStream, long length, ContentType contentType) InputStreamEntity
(InputStream inStream, long length, ContentType contentType, String contentEncoding) InputStreamEntity
(InputStream inStream, ContentType contentType) PathEntity
(Path path, ContentType contentType) PathEntity
(Path path, ContentType contentType, String contentEncoding) SerializableEntity
(Serializable serializable, ContentType contentType) Creates new instance of this class.SerializableEntity
(Serializable serializable, ContentType contentType, String contentEncoding) Creates new instance of this class.StringEntity
(String string, ContentType contentType) StringEntity
(String string, ContentType contentType, boolean chunked) StringEntity
(String string, ContentType contentType, String contentEncoding, boolean chunked) Creates a StringEntity with the specified content and content type. -
Uses of ContentType in org.apache.hc.core5.http.io.support
Methods in org.apache.hc.core5.http.io.support with parameters of type ContentTypeModifier and TypeMethodDescriptionClassicRequestBuilder.setEntity
(byte[] content, ContentType contentType) ClassicRequestBuilder.setEntity
(String content, ContentType contentType) ClassicResponseBuilder.setEntity
(byte[] content, ContentType contentType) ClassicResponseBuilder.setEntity
(String content, ContentType contentType) -
Uses of ContentType in org.apache.hc.core5.http.nio.entity
Fields in org.apache.hc.core5.http.nio.entity declared as ContentTypeModifier and TypeFieldDescriptionprivate final ContentType
AbstractBinAsyncEntityProducer.contentType
private final ContentType
AbstractCharAsyncEntityProducer.contentType
private final ContentType
BasicAsyncEntityProducer.contentType
private final ContentType
FileEntityProducer.contentType
private final ContentType
PathEntityProducer.contentType
Methods in org.apache.hc.core5.http.nio.entity with parameters of type ContentTypeModifier and TypeMethodDescriptionstatic AsyncEntityProducer
AsyncEntityProducers.create
(byte[] content, ContentType contentType) static AsyncEntityProducer
AsyncEntityProducers.create
(byte[] content, ContentType contentType, Header... trailers) static AsyncEntityProducer
AsyncEntityProducers.create
(File content, ContentType contentType) static AsyncEntityProducer
AsyncEntityProducers.create
(File content, ContentType contentType, Header... trailers) static AsyncEntityProducer
AsyncEntityProducers.create
(String content, ContentType contentType) static AsyncEntityProducer
AsyncEntityProducers.create
(String content, ContentType contentType, Header... trailers) static AsyncEntityProducer
AsyncEntityProducers.create
(Path content, ContentType contentType, OpenOption... options) static AsyncEntityProducer
AsyncEntityProducers.create
(Path content, ContentType contentType, Header... trailers) static AsyncEntityProducer
AsyncEntityProducers.createBinary
(Callback<StreamChannel<ByteBuffer>> callback, ContentType contentType) static AsyncEntityProducer
AsyncEntityProducers.createBinary
(Callback<StreamChannel<ByteBuffer>> callback, ContentType contentType, Header... trailers) static AsyncEntityProducer
AsyncEntityProducers.createText
(Callback<StreamChannel<CharBuffer>> callback, ContentType contentType) static AsyncEntityProducer
AsyncEntityProducers.createText
(Callback<StreamChannel<CharBuffer>> callback, ContentType contentType, Header... trailers) protected abstract void
AbstractBinAsyncEntityConsumer.streamStart
(ContentType contentType) Triggered to signal beginning of entity content stream.protected abstract void
AbstractCharAsyncEntityConsumer.streamStart
(ContentType contentType) Triggered to signal beginning of entity content stream.protected void
BasicAsyncEntityConsumer.streamStart
(ContentType contentType) protected final void
StringAsyncEntityConsumer.streamStart
(ContentType contentType) Constructors in org.apache.hc.core5.http.nio.entity with parameters of type ContentTypeModifierConstructorDescriptionAbstractBinAsyncEntityProducer
(int fragmentSizeHint, ContentType contentType) AbstractCharAsyncEntityProducer
(int bufferSize, int fragmentSizeHint, ContentType contentType) BasicAsyncEntityProducer
(byte[] content, ContentType contentType) BasicAsyncEntityProducer
(byte[] content, ContentType contentType, boolean chunked) BasicAsyncEntityProducer
(CharSequence content, ContentType contentType) BasicAsyncEntityProducer
(CharSequence content, ContentType contentType, boolean chunked) FileEntityProducer
(File file, int bufferSize, ContentType contentType, boolean chunked) FileEntityProducer
(File file, ContentType contentType) FileEntityProducer
(File file, ContentType contentType, boolean chunked) PathEntityProducer
(Path file, int bufferSize, ContentType contentType, boolean chunked, OpenOption... openOptions) PathEntityProducer
(Path file, ContentType contentType, boolean chunked, OpenOption... openOptions) PathEntityProducer
(Path file, ContentType contentType, OpenOption... openOptions) StringAsyncEntityProducer
(CharSequence content, int bufferSize, int fragmentSizeHint, ContentType contentType) StringAsyncEntityProducer
(CharSequence content, int bufferSize, ContentType contentType) StringAsyncEntityProducer
(CharSequence content, ContentType contentType) -
Uses of ContentType in org.apache.hc.core5.http.nio.support
Methods in org.apache.hc.core5.http.nio.support with parameters of type ContentTypeModifier and TypeMethodDescriptionprotected abstract T
AbstractAsyncRequesterConsumer.buildResult
(HttpRequest request, E entity, ContentType contentType) Triggered to generate object that represents a result of request message processing.protected abstract T
AbstractAsyncResponseConsumer.buildResult
(HttpResponse response, E entity, ContentType contentType) Triggered to generate object that represents a result of response message processing.AsyncPushBuilder.setEntity
(byte[] content, ContentType contentType) AsyncPushBuilder.setEntity
(String content, ContentType contentType) AsyncRequestBuilder.setEntity
(byte[] content, ContentType contentType) AsyncRequestBuilder.setEntity
(String content, ContentType contentType) AsyncResponseBuilder.setEntity
(byte[] content, ContentType contentType) AsyncResponseBuilder.setEntity
(String content, ContentType contentType) Constructors in org.apache.hc.core5.http.nio.support with parameters of type ContentTypeModifierConstructorDescriptionBasicResponseProducer
(int code, String message, ContentType contentType) BasicResponseProducer
(HttpResponse response, String message, ContentType contentType) -
Uses of ContentType in org.apache.hc.core5.http.nio.support.classic
Fields in org.apache.hc.core5.http.nio.support.classic declared as ContentTypeModifier and TypeFieldDescriptionprivate final ContentType
AbstractClassicEntityProducer.contentType
Methods in org.apache.hc.core5.http.nio.support.classic with parameters of type ContentTypeModifier and TypeMethodDescriptionprotected abstract T
AbstractClassicEntityConsumer.consumeData
(ContentType contentType, InputStream inputStream) Processes entity data from the given stream.protected abstract void
AbstractClassicEntityProducer.produceData
(ContentType contentType, OutputStream outputStream) Writes out entity data into the given stream.Constructors in org.apache.hc.core5.http.nio.support.classic with parameters of type ContentTypeModifierConstructorDescriptionAbstractClassicEntityProducer
(int initialBufferSize, ContentType contentType, Executor executor) -
Uses of ContentType in org.apache.hc.core5.reactive
Fields in org.apache.hc.core5.reactive declared as ContentTypeConstructors in org.apache.hc.core5.reactive with parameters of type ContentTypeModifierConstructorDescriptionReactiveEntityProducer
(org.reactivestreams.Publisher<ByteBuffer> publisher, long contentLength, ContentType contentType, String contentEncoding) Creates a newReactiveEntityProducer
with the given parameters.