Java org.springframework.http.converter HttpMessageConverter fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.http.converter HttpMessageConverter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.http.converter HttpMessageConverter.

The text is from its open source code.

Implementation

org.springframework.http.converter.HttpMessageConverter has the following implementations.
Click this link to see all its implementation.

Method

booleancanRead(Class clazz, @Nullable MediaType mediaType)
Indicates whether the given class can be read by this converter.
booleancanWrite(Class clazz, @Nullable MediaType mediaType)
Indicates whether the given class can be written by this converter.
ClassgetClass()
Returns the runtime class of this Object .
ListgetSupportedMediaTypes()
Return the list of MediaType objects supported by this converter.
Tread(Class clazz, HttpInputMessage inputMessage)
Read an object of the given type from the given input message, and returns it.
voidwrite(T t, @Nullable MediaType contentType, HttpOutputMessage outputMessage)
Write an given object to the given output message.