static JSONReader |
JSONReader.of(byte[] bytes,
int offset,
int length,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(byte[] bytes,
int offset,
int length,
Charset charset,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(byte[] utf8Bytes,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(char[] chars,
int offset,
int length,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(char[] chars,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(JSONReader.Context context,
byte[] utf8Bytes) |
Deprecated.
|
static JSONReader |
JSONReader.of(JSONReader.Context context,
char[] chars) |
Deprecated.
|
static JSONReader |
JSONReader.of(JSONReader.Context context,
String str) |
Deprecated.
|
static JSONReader |
JSONReader.of(InputStream is,
Charset charset,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(Reader is,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(String str,
int offset,
int length,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(String str,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(URL url,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.of(ByteBuffer buffer,
Charset charset,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.ofJSONB(byte[] bytes,
int offset,
int length,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.ofJSONB(byte[] jsonbBytes,
JSONReader.Context context) |
|
static JSONReader |
JSONReader.ofJSONB(JSONReader.Context context,
byte[] jsonbBytes) |
Deprecated.
|
static JSONReader |
JSONReader.ofJSONB(InputStream in,
JSONReader.Context context) |
|
static Object |
JSON.parse(byte[] bytes,
int offset,
int length,
Charset charset,
JSONReader.Context context) |
|
static Object |
JSON.parse(byte[] bytes,
JSONReader.Context context) |
|
static Object |
JSON.parse(char[] chars,
JSONReader.Context context) |
|
static Object |
JSON.parse(InputStream in,
JSONReader.Context context) |
|
static Object |
JSON.parse(String text,
JSONReader.Context context) |
|
static Object |
JSONB.parse(byte[] jsonbBytes,
JSONReader.Context context) |
|
static Object |
JSONB.parse(InputStream in,
JSONReader.Context context) |
|
static JSONArray |
JSON.parseArray(InputStream in,
Charset charset,
JSONReader.Context context) |
|
static JSONArray |
JSONB.parseArray(InputStream in,
JSONReader.Context context) |
|
static <T> T |
JSON.parseObject(byte[] bytes,
Class<T> clazz,
JSONReader.Context context) |
Parses the json byte array as JSON.
|
static JSONObject |
JSON.parseObject(InputStream input,
Charset charset,
JSONReader.Context context) |
|
static <T> T |
JSON.parseObject(InputStream input,
Charset charset,
Class<T> type,
JSONReader.Context context) |
Parses the json stream as a JSON.
|
static <T> T |
JSON.parseObject(InputStream input,
Charset charset,
Type type,
JSONReader.Context context) |
Parses the json stream as a JSON.
|
static JSONObject |
JSON.parseObject(String text,
int offset,
int length,
JSONReader.Context context) |
|
static JSONObject |
JSON.parseObject(String text,
JSONReader.Context context) |
|
static <T> T |
JSON.parseObject(String text,
Class<T> clazz,
JSONReader.Context context) |
Parses the json string as JSON.
|
static <T> T |
JSON.parseObject(String text,
Type type,
JSONReader.Context context) |
Parses the json string as JSON.
|
static <T> T |
JSONB.parseObject(byte[] jsonbBytes,
int off,
int len,
Type objectType,
JSONReader.Context context) |
|
static <T> T |
JSONB.parseObject(byte[] jsonbBytes,
Class<T> objectClass,
JSONReader.Context context) |
|
static <T> T |
JSONB.parseObject(InputStream in,
int length,
Type objectType,
JSONReader.Context context) |
|
static JSONObject |
JSONB.parseObject(InputStream in,
JSONReader.Context context) |
|
static <T> T |
JSONB.parseObject(InputStream in,
Class objectClass,
JSONReader.Context context) |
|
static <T> T |
JSONB.parseObject(InputStream in,
Type objectType,
JSONReader.Context context) |
|
JSONPath |
JSONPath.setReaderContext(JSONReader.Context context) |
|