Uses of Class
com.alibaba.fastjson.parser.ParserConfig
-
-
Uses of ParserConfig in com.alibaba.fastjson
Methods in com.alibaba.fastjson with parameters of type ParserConfig Modifier and Type Method Description static ObjectJSON. parse(String str, ParserConfig config)static ObjectJSON. parse(String str, ParserConfig config, int features)static ObjectJSON. parse(String str, ParserConfig config, Feature... features)static <T> List<T>JSON. parseArray(String text, Class<T> clazz, ParserConfig config)static <T> TJSON. parseObject(byte[] bytes, int offset, int len, Charset charset, Type objectType, ParserConfig config, ParseProcess processor, int featureValues, Feature... features)static <T> TJSON. parseObject(byte[] bytes, Charset charset, Type objectClass, ParserConfig config, ParseProcess processor, int featureValues, Feature... features)static <T> TJSON. parseObject(InputStream is, Charset charset, Type objectType, ParserConfig config, ParseProcess processor, int featureValues, Feature... features)static <T> TJSON. parseObject(InputStream is, Charset charset, Type type, ParserConfig config, Feature... features)static <T> TJSON. parseObject(String input, Type clazz, ParserConfig config, int featureValues, Feature... features)static <T> TJSON. parseObject(String str, Type objectClass, ParserConfig config, ParseProcess processor, int featureValues, Feature... features)static <T> TJSON. parseObject(String str, Type objectType, ParserConfig config, Feature... features)static <T> TJSONPath. read(String json, String path, Type clazz, ParserConfig parserConfig)<T> TJSONObject. toJavaObject(Class<T> clazz, ParserConfig config, int features)static ObjectJSON. toJSON(Object javaObject, ParserConfig config) -
Uses of ParserConfig in com.alibaba.fastjson.parser
Fields in com.alibaba.fastjson.parser declared as ParserConfig Modifier and Type Field Description static ParserConfigParserConfig. globalMethods in com.alibaba.fastjson.parser that return ParserConfig Modifier and Type Method Description ParserConfigDefaultJSONParser. getConfig()static ParserConfigParserConfig. getGlobalInstance()Constructors in com.alibaba.fastjson.parser with parameters of type ParserConfig Constructor Description DefaultJSONParser(com.alibaba.fastjson2.JSONReader reader, ParserConfig config)DefaultJSONParser(Object input, JSONLexer lexer, ParserConfig config)DefaultJSONParser(String text, ParserConfig config) -
Uses of ParserConfig in com.alibaba.fastjson.parser.deserializer
Constructors in com.alibaba.fastjson.parser.deserializer with parameters of type ParserConfig Constructor Description JavaBeanDeserializer(ParserConfig config, Class<?> clazz, Type type) -
Uses of ParserConfig in com.alibaba.fastjson.spi
Methods in com.alibaba.fastjson.spi with parameters of type ParserConfig Modifier and Type Method Description ObjectDeserializerModule. createDeserializer(ParserConfig config, Class type) -
Uses of ParserConfig in com.alibaba.fastjson.support.config
Methods in com.alibaba.fastjson.support.config that return ParserConfig Modifier and Type Method Description ParserConfigFastJsonConfig. getParserConfig()Methods in com.alibaba.fastjson.support.config with parameters of type ParserConfig Modifier and Type Method Description voidFastJsonConfig. setParserConfig(ParserConfig parserConfig) -
Uses of ParserConfig in com.alibaba.fastjson.util
Methods in com.alibaba.fastjson.util with parameters of type ParserConfig Modifier and Type Method Description static <T> TTypeUtils. cast(Object obj, Class<T> clazz, ParserConfig config)static <T> TTypeUtils. cast(Object obj, ParameterizedType type, ParserConfig mapping)static <T> TTypeUtils. cast(Object obj, Type type, ParserConfig mapping)static <T> TTypeUtils. castToJavaBean(Map<String,Object> map, Class<T> clazz, ParserConfig config)
-