| Modifier and Type | Field and Description |
|---|---|
static ObjectMapper |
mapper |
static ObjectMapper |
prettyMapper |
| Constructor and Description |
|---|
Json() |
| Modifier and Type | Method and Description |
|---|---|
static <T> T |
decodeValue(Buffer buf,
Class<T> clazz)
Decode a given JSON buffer to a POJO of the given class type.
|
static <T> T |
decodeValue(Buffer buf,
TypeReference<T> type)
Decode a given JSON buffer to a POJO of the given class type.
|
static <T> T |
decodeValue(String str,
Class<T> clazz)
Decode a given JSON string to a POJO of the given class type.
|
static <T> T |
decodeValue(String str,
TypeReference<T> type)
Decode a given JSON string to a POJO of the given type.
|
static String |
encode(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper.
|
static String |
encodePrettily(Object obj)
Encode a POJO to JSON with pretty indentation, using the underlying Jackson mapper.
|
static Buffer |
encodeToBuffer(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper.
|
public static ObjectMapper mapper
public static ObjectMapper prettyMapper
public static String encode(Object obj) throws EncodeException
obj - a POJOEncodeException - if a property cannot be encoded.public static Buffer encodeToBuffer(Object obj) throws EncodeException
obj - a POJOEncodeException - if a property cannot be encoded.public static String encodePrettily(Object obj) throws EncodeException
obj - a POJOEncodeException - if a property cannot be encoded.public static <T> T decodeValue(String str, Class<T> clazz) throws DecodeException
T - the generic type.str - the JSON string.clazz - the class to map to.DecodeException - when there is a parsing or invalid mapping.public static <T> T decodeValue(String str, TypeReference<T> type) throws DecodeException
T - the generic type.str - the JSON string.type - the type to map to.DecodeException - when there is a parsing or invalid mapping.public static <T> T decodeValue(Buffer buf, TypeReference<T> type) throws DecodeException
T - the generic type.buf - the JSON buffer.type - the type to map to.DecodeException - when there is a parsing or invalid mapping.public static <T> T decodeValue(Buffer buf, Class<T> clazz) throws DecodeException
T - the generic type.buf - the JSON buffer.clazz - the class to map to.DecodeException - when there is a parsing or invalid mapping.Copyright © 2017. All rights reserved.