| Package | Description |
|---|---|
| com.alibaba.fastjson | |
| com.alibaba.fastjson.parser | |
| com.alibaba.fastjson.support.config | |
| com.alibaba.fastjson.support.retrofit |
| Modifier and Type | Method and Description |
|---|---|
void |
JSONReader.config(Feature feature,
boolean state) |
static Object |
JSON.parse(byte[] input,
Feature... features) |
static Object |
JSON.parse(byte[] input,
int off,
int len,
CharsetDecoder charsetDecoder,
Feature... features) |
static Object |
JSON.parse(String text,
Feature... features) |
static <T> T |
JSON.parseObject(byte[] input,
int off,
int len,
CharsetDecoder charsetDecoder,
Type clazz,
Feature... features) |
static <T> T |
JSON.parseObject(byte[] bytes,
int offset,
int len,
Charset charset,
Type clazz,
Feature... features) |
static <T> T |
JSON.parseObject(byte[] bytes,
Type clazz,
Feature... features) |
static <T> T |
JSON.parseObject(char[] input,
int length,
Type clazz,
Feature... features) |
static <T> T |
JSON.parseObject(InputStream is,
Charset charset,
Type type,
Feature... features) |
static <T> T |
JSON.parseObject(InputStream is,
Type type,
Feature... features) |
static <T> T |
JSON.parseObject(String json,
Class<T> clazz,
Feature... features)
This method deserializes the specified Json into an object of the specified class.
|
static <T> T |
JSON.parseObject(String text,
Class<T> clazz,
ParseProcess processor,
Feature... features) |
static JSONObject |
JSON.parseObject(String text,
Feature... features) |
static <T> T |
JSON.parseObject(String json,
Type type,
Feature... features)
This method deserializes the specified Json into an object of the specified type.
|
static <T> T |
JSON.parseObject(String input,
Type clazz,
int featureValues,
Feature... features) |
static <T> T |
JSON.parseObject(String input,
Type clazz,
ParseProcess processor,
Feature... features) |
static <T> T |
JSON.parseObject(String input,
Type clazz,
ParserConfig config,
Feature... features) |
static <T> T |
JSON.parseObject(String input,
Type clazz,
ParserConfig config,
int featureValues,
Feature... features) |
static <T> T |
JSON.parseObject(String input,
Type clazz,
ParserConfig config,
ParseProcess processor,
int featureValues,
Feature... features) |
static <T> T |
JSON.parseObject(String text,
TypeReference<T> type,
Feature... features)
String jsonStr = "[{\"id\":1001,\"name\":\"Jobs\"}]";
List<Model> models = JSON.parseObject(jsonStr, new TypeReference<List<Model>>() {});
|
| Constructor and Description |
|---|
JSONReader(Reader reader,
Feature... features) |
| Modifier and Type | Method and Description |
|---|---|
static Feature |
Feature.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Feature[] |
Feature.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultJSONParser.config(Feature feature,
boolean state) |
void |
JSONLexerBase.config(Feature feature,
boolean state) |
void |
JSONLexer.config(Feature feature,
boolean state) |
static int |
Feature.config(int features,
Feature feature,
boolean state) |
boolean |
DefaultJSONParser.isEnabled(Feature feature) |
boolean |
JSONLexerBase.isEnabled(Feature feature) |
boolean |
JSONLexer.isEnabled(Feature feature) |
static boolean |
Feature.isEnabled(int features,
Feature feature) |
static int |
Feature.of(Feature[] features) |
| Modifier and Type | Method and Description |
|---|---|
Feature[] |
FastJsonConfig.getFeatures() |
| Modifier and Type | Method and Description |
|---|---|
void |
FastJsonConfig.setFeatures(Feature... features) |
| Modifier and Type | Method and Description |
|---|---|
Feature[] |
Retrofit2ConverterFactory.getParserFeatures() |
| Modifier and Type | Method and Description |
|---|---|
Retrofit2ConverterFactory |
Retrofit2ConverterFactory.setParserFeatures(Feature[] features) |
Copyright © 2012–2018 Alibaba Group. All rights reserved.