Interface ObjectReaderFactory


public interface ObjectReaderFactory
A strategy for creating an ObjectReader for a given type.
  • Method Summary

    Modifier and Type
    Method
    Description
    com.fasterxml.jackson.databind.ObjectReader
    createReader(com.fasterxml.jackson.databind.ObjectMapper mapper, TypeRef<?> type)
    Uses the given mapper to create an ObjectReader for the given type.
     
  • Method Details

    • createReader

      com.fasterxml.jackson.databind.ObjectReader createReader(com.fasterxml.jackson.databind.ObjectMapper mapper, TypeRef<?> type)
      Uses the given mapper to create an ObjectReader for the given type.
    • getDefault

      static ObjectReaderFactory getDefault()