Package | Description |
---|---|
io.vertx.core.json |
Modifier and Type | Method and Description |
---|---|
static <T> T |
Json.decodeValue(Buffer buf,
Class<T> clazz)
Decode a given JSON buffer to a POJO of the given class type.
|
static <T> T |
Json.decodeValue(Buffer buf,
com.fasterxml.jackson.core.type.TypeReference<T> type)
Decode a given JSON buffer to a POJO of the given class type.
|
static <T> T |
Json.decodeValue(String str,
Class<T> clazz)
Decode a given JSON string to a POJO of the given class type.
|
static <T> T |
Json.decodeValue(String str,
com.fasterxml.jackson.core.type.TypeReference<T> type)
Decode a given JSON string to a POJO of the given type.
|
Copyright © 2018 Eclipse. All rights reserved.