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.

@FunctionalInterface public interface JsonPathObjectDeserializer
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 Type
    Method
    Description
    <T> T
    deserialize(io.restassured.common.mapper.ObjectDeserializationContext ctx)
    De-serialize data to an instance of T.
  • Method Details

    • deserialize

      <T> T deserialize(io.restassured.common.mapper.ObjectDeserializationContext ctx)
      De-serialize data to an instance of T.