Interface ResponseDeserializationStep2Builder<T>
-
- Type Parameters:
T- the type to deserialize theMapinto
public interface ResponseDeserializationStep2Builder<T>Based on the conditions defined in the previousRequestDeserializationStep1Builder, this step defines how to map the matching object from aMapto the given type.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResponseDeserializationStep1Builderusing(Demapifier<T> deMapifier)Uses the givenDemapifier, when the previous condition triggers.
-
-
-
Method Detail
-
using
ResponseDeserializationStep1Builder using(Demapifier<T> deMapifier)
Uses the givenDemapifier, when the previous condition triggers.- Parameters:
deMapifier- theDemapifierto use- Returns:
- the next step in the fluent builder interface
-
-