public final class JacksonMapper
extends java.lang.Object
ObjectMapper.
Usage:
JacksonMapper mapper = new JacksonMapper();
JacksonMapper.Builder| Modifier and Type | Class and Description |
|---|---|
static class |
JacksonMapper.Builder
Builder used to create
JacksonMapper instances. |
| Constructor and Description |
|---|
JacksonMapper()
Create a new
JacksonMapper with default settings. |
| Modifier and Type | Method and Description |
|---|---|
static JacksonMapper.Builder |
builder()
A new builder to create a
JacksonMapper with default settings. |
static JacksonMapper.Builder |
builder(com.fasterxml.jackson.databind.ObjectMapper objectMapper)
A new builder to create a
JacksonMapper from the specified
ObjectMapper. |
public JacksonMapper()
JacksonMapper with default settings.public static JacksonMapper.Builder builder()
JacksonMapper with default settings.Builder with default settings.public static JacksonMapper.Builder builder(@NonNull com.fasterxml.jackson.databind.ObjectMapper objectMapper)
JacksonMapper from the specified
ObjectMapper.objectMapper - A Jackson JSON ObjectMapper.Builder with the specified ObjectMapper.