Package | Description |
---|---|
io.vertx.core.json |
Modifier and Type | Method and Description |
---|---|
static Object |
Json.decodeValue(Buffer buf)
Decode a given JSON buffer.
|
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 Object |
Json.decodeValue(String str)
Decode a given JSON string.
|
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 © 2019 Eclipse. All rights reserved.