Uses of Class
io.restassured.path.json.config.JsonPathConfig
Packages that use JsonPathConfig
Package
Description
-
Uses of JsonPathConfig in io.restassured.internal.path.json.mapping
Methods in io.restassured.internal.path.json.mapping with parameters of type JsonPathConfigModifier and TypeMethodDescriptionstatic <T> TJsonObjectDeserializer.deserialize(String json, Class<T> cls, JsonPathConfig jsonPathConfig) -
Uses of JsonPathConfig in io.restassured.path.json
Fields in io.restassured.path.json declared as JsonPathConfigMethods in io.restassured.path.json with parameters of type JsonPathConfigModifier and TypeMethodDescriptionJsonPath.using(JsonPathConfig config) Configure JsonPath to with a specific JsonPathConfig. -
Uses of JsonPathConfig in io.restassured.path.json.config
Methods in io.restassured.path.json.config that return JsonPathConfigModifier and TypeMethodDescriptionJsonPathConfig.and()For syntactic sugar.JsonPathConfig.defaultObjectDeserializer(JsonPathObjectDeserializer defaultObjectDeserializer) Creates an json path configuration that uses the specified object de-serializer as default.JsonPathConfig.defaultParserType(JsonParserType defaultParserType) Creates an json path configuration that uses the specified parser type as default.JsonPathConfig.gsonObjectMapperFactory(GsonObjectMapperFactory gsonObjectMapperFactory) Specify a custom Gson object mapper factory.JsonPathConfig.jackson1ObjectMapperFactory(Jackson1ObjectMapperFactory jackson1ObjectMapperFactory) Specify a custom Jackson 1.0 object mapper factory.JsonPathConfig.jackson2ObjectMapperFactory(Jackson2ObjectMapperFactory jackson2ObjectMapperFactory) Specify a custom Jackson 1.0 object mapper factory.JsonPathConfig.jsonbObjectMapperFactory(JsonbObjectMapperFactory jsonbObjectMapperFactory) Specify a custom JSON-B object mapper factory.static JsonPathConfigJsonPathConfig.jsonPathConfig()JsonPathConfig.numberReturnType(JsonPathConfig.NumberReturnType numberReturnType) Specifies if JsonPath should use floats and doubles or BigDecimals to represent Json numbers.JsonPathConfig.with()For syntactic sugar.Constructors in io.restassured.path.json.config with parameters of type JsonPathConfigModifierConstructorDescriptionJsonPathConfig(JsonPathConfig config) Create a new instance of a JsonPathConfig based on the properties in the supplied config.