decoder method

T decoder(
  1. Object value,
  2. DecodingContext context
)

The mapping method to decode value to an instance of this mappers type.

Implementation

T decoder(Object value, DecodingContext context) {
  throw MapperException.unsupportedMethod(MapperMethod.decode, type);
}