Uses of Class
org.infinispan.commons.dataconversion.MediaType
-
-
Uses of MediaType in org.infinispan.client.hotrod
Methods in org.infinispan.client.hotrod that return MediaType Modifier and Type Method Description MediaTypeDataFormat. getKeyType()MediaTypeDataFormat. getValueType()Methods in org.infinispan.client.hotrod with parameters of type MediaType Modifier and Type Method Description DataFormat.BuilderDataFormat.Builder. keyType(MediaType keyType)DataFormat.BuilderDataFormat.Builder. valueType(MediaType valueType) -
Uses of MediaType in org.infinispan.client.hotrod.marshall
Methods in org.infinispan.client.hotrod.marshall that return MediaType Modifier and Type Method Description MediaTypeBytesOnlyJBossLikeMarshaller. mediaType()MediaTypeBytesOnlyMarshaller. mediaType() -
Uses of MediaType in org.infinispan.commons.dataconversion
Fields in org.infinispan.commons.dataconversion with type parameters of type MediaType Modifier and Type Field Description protected java.util.Set<MediaType>OneToManyTranscoder. supportedTypesMethods in org.infinispan.commons.dataconversion that return MediaType Modifier and Type Method Description static MediaTypeMediaType. fromString(java.lang.String mediaType)static MediaTypeMediaTypeIds. getMediaType(java.lang.Short id)MediaTypeBinaryEncoder. getStorageFormat()MediaTypeEncoder. getStorageFormat()Returns theMediaTypeproduced by this encoder or null if the storage format is not known.MediaTypeGenericJbossMarshallerEncoder. getStorageFormat()MediaTypeGlobalMarshallerEncoder. getStorageFormat()MediaTypeIdentityEncoder. getStorageFormat()MediaTypeJavaSerializationEncoder. getStorageFormat()MediaTypeUTF8Encoder. getStorageFormat()static MediaTypeMediaType. parse(java.lang.String str)MediaTypeMediaType.MediaTypeExternalizer. readObject(java.io.ObjectInput input)MediaTypeMediaType. withCharset(java.nio.charset.Charset charset)MediaTypeMediaType. withClassType(java.lang.Class<?> clazz)MediaTypeMediaType. withoutParameters()MediaTypeMediaType. withParameter(java.lang.String name, java.lang.String value)MediaTypeMediaType. withParameters(java.util.Map<java.lang.String,java.lang.String> parameters)Methods in org.infinispan.commons.dataconversion that return types with arguments of type MediaType Modifier and Type Method Description java.util.Set<MediaType>DefaultTranscoder. getSupportedMediaTypes()java.util.Set<MediaType>OneToManyTranscoder. getSupportedMediaTypes()java.util.Set<MediaType>Transcoder. getSupportedMediaTypes()static java.util.stream.Stream<MediaType>MediaType. parseList(java.lang.String mediaTypeList)Methods in org.infinispan.commons.dataconversion with parameters of type MediaType Modifier and Type Method Description static byte[]StandardConversions. convertJavaToOctetStream(java.lang.Object source, MediaType sourceMediaType, Marshaller marshaller)Converts a java object to a sequence of bytes applying standard java serialization.static byte[]StandardConversions. convertJavaToText(java.lang.Object source, MediaType sourceMediaType, MediaType destinationMediaType)Converts a java object to a text/plain representation.static java.lang.ObjectStandardConversions. convertOctetStreamToJava(byte[] source, MediaType destination, Marshaller marshaller)Converts an octet stream to a Java objectstatic byte[]StandardConversions. convertOctetStreamToText(byte[] source, MediaType destination)Converts generic byte[] to text.static java.lang.ObjectStandardConversions. convertOctetStreamToUrlEncoded(java.lang.Object content, MediaType contentType)static java.lang.StringStandardConversions. convertTextToObject(java.lang.Object source, MediaType sourceType)Converts text content to the Java representation (String).static byte[]StandardConversions. convertTextToOctetStream(java.lang.Object source, MediaType sourceType)Converts text content to binary.static java.lang.ObjectStandardConversions. convertTextToText(java.lang.Object source, MediaType sourceType, MediaType destinationType)Convert text content to a different encoding.static java.lang.StringStandardConversions. convertTextToUrlEncoded(java.lang.Object source, MediaType sourceType)Convert text format to a URL safe format.java.lang.ObjectDefaultTranscoder. convertToOctetStream(java.lang.Object content, MediaType contentType, MediaType destinationType)static java.lang.ObjectStandardConversions. convertUrlEncodedToText(java.lang.Object content, MediaType destinationType)static java.lang.ObjectStandardConversions. decodeObjectContent(java.lang.Object content, MediaType contentMediaType)Decode UTF-8 as a java object.static byte[]StandardConversions. decodeOctetStream(java.lang.Object input, MediaType octetStream)Decode a octet-stream content that is not a byte[].static java.lang.ShortMediaTypeIds. getId(MediaType mediaType)booleanMediaType. match(MediaType other)default booleanTranscoder. supports(MediaType mediaType)booleanDefaultTranscoder. supportsConversion(MediaType mediaType, MediaType other)booleanOneToManyTranscoder. supportsConversion(MediaType mediaType, MediaType other)default booleanTranscoder. supportsConversion(MediaType mediaType, MediaType other)java.lang.ObjectDefaultTranscoder. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType)java.lang.ObjectTranscoder. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType)Transcodes content between two differentMediaType.java.lang.ObjectTranscoderMarshallerAdapter. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType)static java.lang.StringStandardConversions. urlEncode(java.lang.Object content, MediaType mediaType)voidMediaType.MediaTypeExternalizer. writeObject(java.io.ObjectOutput output, MediaType mediaType)Constructors in org.infinispan.commons.dataconversion with parameters of type MediaType Constructor Description OneToManyTranscoder(MediaType mainType, MediaType... supportedConversions) -
Uses of MediaType in org.infinispan.commons.marshall
Methods in org.infinispan.commons.marshall that return MediaType Modifier and Type Method Description MediaTypeIdentityMarshaller. mediaType()MediaTypeJavaSerializationMarshaller. mediaType()MediaTypeMarshaller. mediaType()MediaTypeStringMarshaller. mediaType()MediaTypeUTF8StringMarshaller. mediaType() -
Uses of MediaType in org.infinispan.commons.marshall.jboss
Methods in org.infinispan.commons.marshall.jboss that return MediaType Modifier and Type Method Description MediaTypeAbstractJBossMarshaller. mediaType() -
Uses of MediaType in org.infinispan.configuration.cache
Methods in org.infinispan.configuration.cache that return MediaType Modifier and Type Method Description MediaTypeContentTypeConfiguration. mediaType()Methods in org.infinispan.configuration.cache with parameters of type MediaType Modifier and Type Method Description voidContentTypeConfiguration. mediaType(MediaType mediaType) -
Uses of MediaType in org.infinispan.encoding
Methods in org.infinispan.encoding that return MediaType Modifier and Type Method Description MediaTypeDataConversion. getRequestMediaType()MediaTypeDataConversion. getStorageMediaType()Methods in org.infinispan.encoding with parameters of type MediaType Modifier and Type Method Description java.lang.ObjectDataConversion. convert(java.lang.Object o, MediaType from, MediaType to)java.lang.ObjectDataConversion. convertToRequestFormat(java.lang.Object o, MediaType contentType)booleanDataConversion. isConversionSupported(MediaType mediaType)static DataConversionDataConversion. newKeyDataConversion(java.lang.Class<? extends Encoder> encoderClass, java.lang.Class<? extends Wrapper> wrapperClass, MediaType storageType)static DataConversionDataConversion. newValueDataConversion(java.lang.Class<? extends Encoder> encoderClass, java.lang.Class<? extends Wrapper> wrapperClass, MediaType storageType)DataConversionDataConversion. withRequestMediaType(MediaType requestMediaType) -
Uses of MediaType in org.infinispan.filter
Methods in org.infinispan.filter that return MediaType Modifier and Type Method Description default MediaTypeKeyValueFilter. format() -
Uses of MediaType in org.infinispan.marshall.core
Methods in org.infinispan.marshall.core that return MediaType Modifier and Type Method Description MediaTypeGlobalMarshaller. mediaType()Methods in org.infinispan.marshall.core with parameters of type MediaType Modifier and Type Method Description TranscoderEncoderRegistry. getTranscoder(MediaType type1, MediaType type2)Obtain an instance ofTranscoderfrom the registry.TranscoderEncoderRegistryImpl. getTranscoder(MediaType mediaType, MediaType another)booleanEncoderRegistry. isConversionSupported(MediaType from, MediaType to)booleanEncoderRegistryImpl. isConversionSupported(MediaType from, MediaType to) -
Uses of MediaType in org.infinispan.notifications.cachelistener.filter
Methods in org.infinispan.notifications.cachelistener.filter that return MediaType Modifier and Type Method Description default MediaTypeCacheEventConverter. format()default MediaTypeCacheEventFilter. format()default MediaTypeCacheEventFilterConverter. format() -
Uses of MediaType in org.infinispan.persistence.remote.upgrade
Methods in org.infinispan.persistence.remote.upgrade that return MediaType Modifier and Type Method Description MediaTypeRemovedFilter. format() -
Uses of MediaType in org.infinispan.persistence.remote.wrapper
Methods in org.infinispan.persistence.remote.wrapper that return MediaType Modifier and Type Method Description MediaTypeHotRodEntryMarshaller. mediaType() -
Uses of MediaType in org.infinispan.query.remote.client
Methods in org.infinispan.query.remote.client that return MediaType Modifier and Type Method Description MediaTypeBaseProtoStreamMarshaller. mediaType() -
Uses of MediaType in org.infinispan.rest
Methods in org.infinispan.rest that return MediaType Modifier and Type Method Description MediaTypeNettyRestRequest. contentType()MediaTypeNettyRestRequest. keyContentType()Methods in org.infinispan.rest with parameters of type MediaType Modifier and Type Method Description NettyRestResponse.BuilderNettyRestResponse.Builder. contentType(MediaType mediaType) -
Uses of MediaType in org.infinispan.rest.cachemanager
Methods in org.infinispan.rest.cachemanager that return MediaType Modifier and Type Method Description MediaTypeRestCacheManager. getValueConfiguredFormat(java.lang.String cacheName)Methods in org.infinispan.rest.cachemanager with parameters of type MediaType Modifier and Type Method Description AdvancedCache<java.lang.Object,V>RestCacheManager. getCache(java.lang.String name, MediaType keyContentType, MediaType valueContentType)CacheEntry<java.lang.Object,V>RestCacheManager. getInternalEntry(java.lang.String cacheName, java.lang.Object key, boolean skipListener, MediaType keyContentType, MediaType mediaType)CacheEntry<java.lang.Object,V>RestCacheManager. getInternalEntry(java.lang.String cacheName, java.lang.Object key, MediaType keyContentType, MediaType mediaType)voidRestCacheManager. remove(java.lang.String cacheName, java.lang.Object key, MediaType keyContentType, boolean async) -
Uses of MediaType in org.infinispan.rest.framework
Methods in org.infinispan.rest.framework that return MediaType Modifier and Type Method Description MediaTypeRestRequest. contentType()MediaTypeRestRequest. keyContentType() -
Uses of MediaType in org.infinispan.rest.operations.mediatypes
Methods in org.infinispan.rest.operations.mediatypes with parameters of type MediaType Modifier and Type Method Description static OutputPrinterEntrySetFormatter. forMediaType(MediaType mediaType) -
Uses of MediaType in org.infinispan.server.core.dataconversion
Methods in org.infinispan.server.core.dataconversion with parameters of type MediaType Modifier and Type Method Description java.lang.ObjectJBossMarshallingTranscoder. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType)java.lang.ObjectJsonTranscoder. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType)java.lang.ObjectXMLTranscoder. transcode(java.lang.Object content, MediaType contentType, MediaType destinationType) -
Uses of MediaType in org.infinispan.server.hotrod
Methods in org.infinispan.server.hotrod that return MediaType Modifier and Type Method Description MediaTypeHotRodHeader. getKeyMediaType()MediaTypeHotRodHeader. getValueMediaType()Constructors in org.infinispan.server.hotrod with parameters of type MediaType Constructor Description HotRodHeader(HotRodOperation op, byte version, long messageId, java.lang.String cacheName, int flag, short clientIntel, int topologyId, MediaType keyType, MediaType valueType) -
Uses of MediaType in org.infinispan.server.hotrod.iteration
Methods in org.infinispan.server.hotrod.iteration with parameters of type MediaType Modifier and Type Method Description java.lang.StringDefaultIterationManager. start(Cache cache, java.util.BitSet segments, java.lang.String filterConverterFactory, java.util.List<byte[]> filterConverterParams, MediaType requestValueType, int batch, boolean metadata)java.lang.StringIterationManager. start(Cache cache, java.util.BitSet segments, java.lang.String filterConverterFactory, java.util.List<byte[]> filterConverterParams, MediaType valueMediaType, int batch, boolean metadata)Constructors in org.infinispan.server.hotrod.iteration with parameters of type MediaType Constructor Description IterationFilter(MediaType storageMediaType, MediaType requestType, java.util.Optional<KeyValueFilterConverter<K,V,C>> providedFilter) -
Uses of MediaType in org.infinispan.server.memcached
Constructors in org.infinispan.server.memcached with parameters of type MediaType Constructor Description MemcachedDecoder(AdvancedCache<byte[],byte[]> memcachedCache, java.util.concurrent.ScheduledExecutorService scheduler, NettyTransport transport, java.util.function.Predicate<? super java.lang.String> ignoreCache, MediaType valuePayload) -
Uses of MediaType in org.infinispan.server.memcached.configuration
Fields in org.infinispan.server.memcached.configuration with type parameters of type MediaType Modifier and Type Field Description static AttributeDefinition<MediaType>MemcachedServerConfiguration. CLIENT_ENCODINGMethods in org.infinispan.server.memcached.configuration that return MediaType Modifier and Type Method Description MediaTypeMemcachedServerConfiguration. clientEncoding()Methods in org.infinispan.server.memcached.configuration with parameters of type MediaType Modifier and Type Method Description MemcachedServerConfigurationBuilderMemcachedServerConfigurationBuilder. clientEncoding(MediaType payloadType)The encoding to be used by clients of the memcached text protocol.
-