Uses of Class
io.vertx.core.json.DecodeException
Packages that use DecodeException
Package
Description
-
Uses of DecodeException in io.vertx.core.json
Methods in io.vertx.core.json that throw DecodeExceptionModifier and TypeMethodDescriptionstatic ObjectJson.decodeValue(Buffer buf) Decode a given JSON buffer.static <T> TJson.decodeValue(Buffer buf, Class<T> clazz) Decode a given JSON buffer to a POJO of the given class type.static ObjectJson.decodeValue(String str) Decode a given JSON string.static <T> TJson.decodeValue(String str, Class<T> clazz) Decode a given JSON string to a POJO of the given class type. -
Uses of DecodeException in io.vertx.core.json.jackson
Methods in io.vertx.core.json.jackson that throw DecodeExceptionModifier and TypeMethodDescription<T> TDatabindCodec.fromBuffer(Buffer buf, TypeReference<T> typeRef) <T> TDatabindCodec.fromBuffer(Buffer buf, Class<T> clazz) JacksonCodec.fromBuffer(Buffer buf) <T> TJacksonCodec.fromBuffer(Buffer json, Class<T> clazz) static <T> TDatabindCodec.fromParser(JsonParser parser, Class<T> type) static <T> TJacksonCodec.fromParser(JsonParser parser, Class<T> type) <T> TDatabindCodec.fromString(String str, TypeReference<T> typeRef) <T> TDatabindCodec.fromString(String str, Class<T> clazz) JacksonCodec.fromString(String str) <T> TJacksonCodec.fromString(String json, Class<T> clazz) static ObjectJacksonCodec.parseValue(JsonParser parser) Parse a JSON value given theparser, consuming the current parser token and possibly more when parsing an object or an array. -
Uses of DecodeException in io.vertx.core.spi.json
Methods in io.vertx.core.spi.json that throw DecodeExceptionModifier and TypeMethodDescription<T> TJsonCodec.fromBuffer(Buffer json, Class<T> clazz) LikeJsonCodec.fromString(String, Class)but with a jsonBuffer<T> TJsonCodec.fromString(String json, Class<T> clazz) Decode the providejsonstring to an object extendingclazz. -
Uses of DecodeException in io.vertx.ext.web.validation
Methods in io.vertx.ext.web.validation with parameters of type DecodeExceptionModifier and TypeMethodDescriptionstatic BodyProcessorExceptionBodyProcessorException.createParsingError(String contentType, DecodeException cause)