Java org.springframework.core.codec Decoder fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.core.codec Decoder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.core.codec Decoder.

The text is from its open source code.

Implementation

org.springframework.core.codec.Decoder has the following implementations.
Click this link to see all its implementation.

Method

booleancanDecode(ResolvableType elementType, @Nullable MimeType mimeType)
Whether the decoder supports the given target element type and the MIME type of the source stream.
Fluxdecode(Publisher inputStream, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map hints)
Decode a DataBuffer input stream into a Flux of T .
Tdecode(DataBuffer buffer, ResolvableType targetType, @Nullable MimeType mimeType, @Nullable Map hints)
Decode a data buffer to an Object of type T.
MonodecodeToMono(Publisher inputStream, ResolvableType elementType, @Nullable MimeType mimeType, @Nullable Map hints)
Decode a DataBuffer input stream into a Mono of T .
ClassgetClass()
Returns the runtime class of this Object .
ListgetDecodableMimeTypes()
Return the list of MIME types this decoder supports.