Uses of Class
io.vertx.core.json.EncodeException
-
Packages that use EncodeException Package Description io.vertx.core.json io.vertx.core.json.jackson io.vertx.core.spi.json -
-
Uses of EncodeException in io.vertx.core.json
Methods in io.vertx.core.json that throw EncodeException Modifier and Type Method Description static String
Json. encode(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper.static String
Json. encodePrettily(Object obj)
Encode a POJO to JSON with pretty indentation, using the underlying Jackson mapper.static Buffer
Json. encodeToBuffer(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper. -
Uses of EncodeException in io.vertx.core.json.jackson
Methods in io.vertx.core.json.jackson that throw EncodeException Modifier and Type Method Description static void
JacksonCodec. encodeJson(Object json, JsonGenerator generator)
Buffer
DatabindCodec. toBuffer(Object object, boolean pretty)
Buffer
JacksonCodec. toBuffer(Object object, boolean pretty)
String
DatabindCodec. toString(Object object, boolean pretty)
String
JacksonCodec. toString(Object object, boolean pretty)
-
Uses of EncodeException in io.vertx.core.spi.json
Methods in io.vertx.core.spi.json that throw EncodeException Modifier and Type Method Description default Buffer
JsonCodec. toBuffer(Object object)
LikeJsonCodec.toString(Object)
but with a jsonBuffer
Buffer
JsonCodec. toBuffer(Object object, boolean pretty)
LikeJsonCodec.toString(Object, boolean)
but with a jsonBuffer
default String
JsonCodec. toString(Object object)
Encode the specifiedobject
to a string.String
JsonCodec. toString(Object object, boolean pretty)
Encode the specifiedobject
to a string.
-