void |
JSONReader.Context.config(Filter filter) |
|
void |
JSONReader.Context.config(Filter[] filters) |
|
void |
JSONReader.Context.config(Filter[] filters,
JSONReader.Feature... features) |
|
void |
JSONReader.Context.config(Filter filter,
JSONReader.Feature... features) |
|
void |
JSONWriter.Context.configFilter(Filter... filters) |
|
static JSONReader.Context |
JSONFactory.createReadContext(Filter filter,
JSONReader.Feature... features) |
|
static <T> T |
JSON.parseObject(byte[] bytes,
Class<T> clazz,
Filter filter,
JSONReader.Feature... features) |
Parses the json byte array as JSON.
|
static <T> T |
JSON.parseObject(byte[] bytes,
Type type,
Filter filter,
JSONReader.Feature... features) |
Parses the json byte array as JSON.
|
static <T> T |
JSON.parseObject(byte[] bytes,
Type type,
String format,
Filter[] filters,
JSONReader.Feature... features) |
Parses the json byte array as JSON.
|
static <T> T |
JSON.parseObject(String text,
TypeReference<T> typeReference,
Filter filter,
JSONReader.Feature... features) |
Parses the json string as JSON.
|
static <T> T |
JSON.parseObject(String text,
Class<T> clazz,
Filter filter,
JSONReader.Feature... features) |
Parses the json string as JSON.
|
static <T> T |
JSON.parseObject(String text,
Type type,
Filter filter,
JSONReader.Feature... features) |
Parses the json string as JSON.
|
static <T> T |
JSON.parseObject(String text,
Type type,
String format,
Filter[] filters,
JSONReader.Feature... features) |
Parses the json string as JSON.
|
static <T> T |
JSONB.parseObject(byte[] jsonbBytes,
Class<T> objectClass,
Filter filter,
JSONReader.Feature... features) |
|
static <T> T |
JSONB.parseObject(byte[] jsonbBytes,
Type objectType,
SymbolTable symbolTable,
Filter[] filters,
JSONReader.Feature... features) |
|
static void |
JSON.register(Class type,
Filter filter) |
Register ObjectWriterFilter
|
static byte[] |
JSONB.toBytes(Object object,
SymbolTable symbolTable,
Filter[] filters,
JSONWriter.Feature... features) |
|
static byte[] |
JSON.toJSONBytes(Object object,
Filter... filters) |
Serializes the specified object to the json byte array
|
static byte[] |
JSON.toJSONBytes(Object object,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json byte array
|
static byte[] |
JSON.toJSONBytes(Object object,
String format,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json byte array
|
static String |
JSON.toJSONString(Object object,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json string
|
static String |
JSON.toJSONString(Object object,
Filter filter,
JSONWriter.Feature... features) |
Serializes the specified object to the json string
|
static String |
JSON.toJSONString(Object object,
String format,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json string
|
static int |
JSON.writeTo(OutputStream out,
Object object,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json byte array and write it to OutputStream
|
static int |
JSON.writeTo(OutputStream out,
Object object,
String format,
Filter[] filters,
JSONWriter.Feature... features) |
Serializes the specified object to the json byte array and write it to OutputStream
|