Package io.restassured.path.json.mapping
Interface JsonPathObjectDeserializer
- All Known Implementing Classes:
JsonPathGsonObjectDeserializer,JsonPathJackson1ObjectDeserializer,JsonPathJackson2ObjectDeserializer,JsonPathJackson3ObjectDeserializer,JsonPathJohnzonObjectDeserializer,JsonPathJsonbObjectDeserializer
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface for all JsonPath object deserializers. It's possible to roll your own implementation if the pre-defined
de-serializers are not enough.
-
Method Summary
Modifier and TypeMethodDescription<T> Tdeserialize(io.restassured.common.mapper.ObjectDeserializationContext ctx) De-serialize data to an instance ofT.
-
Method Details
-
deserialize
<T> T deserialize(io.restassured.common.mapper.ObjectDeserializationContext ctx) De-serialize data to an instance ofT.
-