Java io.vertx.core.json Json fields, constructors, methods, implement or subclass

Example usage for Java io.vertx.core.json Json fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for io.vertx.core.json Json.

The text is from its open source code.

Subclass

io.vertx.core.json.Json has subclasses.
Click this link to see all its subclasses.

Method

TdecodeValue(String str, Class clazz)
Decode a given JSON string to a POJO of the given class type.
TdecodeValue(Buffer buf, Class clazz)
Decode a given JSON buffer to a POJO of the given class type.
Stringencode(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper.
StringencodePrettily(Object obj)
Encode a POJO to JSON with pretty indentation, using the underlying Jackson mapper.
BufferencodeToBuffer(Object obj)
Encode a POJO to JSON using the underlying Jackson mapper.