com.fasterxml.jackson.databind

Class MappingJsonFactory

  • java.lang.Object
    • com.fasterxml.jackson.core.JsonFactory
      • com.fasterxml.jackson.databind.MappingJsonFactory
  • All Implemented Interfaces:
    com.fasterxml.jackson.core.Versioned, Serializable


    public class MappingJsonFactory
    extends com.fasterxml.jackson.core.JsonFactory
    Sub-class of JsonFactory that will create a proper ObjectCodec to allow seam-less conversions between JSON content and Java objects (POJOs). The only addition to regular JsonFactory currently is that ObjectMapper is constructed and passed as the codec to use.
    See Also:
    Serialized Form
    • Nested Class Summary

      • Nested classes/interfaces inherited from class com.fasterxml.jackson.core.JsonFactory

        com.fasterxml.jackson.core.JsonFactory.Feature
    • Field Summary

      • Fields inherited from class com.fasterxml.jackson.core.JsonFactory

        _characterEscapes, _factoryFeatures, _generatorFeatures, _inputDecorator, _objectCodec, _outputDecorator, _parserFeatures, _recyclerRef, _rootByteSymbols, _rootCharSymbols, _rootValueSeparator, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS, FORMAT_NAME_JSON
    • Method Summary

      Methods 
      Modifier and Type Method and Description
      com.fasterxml.jackson.core.JsonFactory copy() 
      ObjectMapper getCodec()
      We'll override the method to return more specific type; co-variance helps here
      String getFormatName()
      Sub-classes need to override this method (as of 1.8)
      com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
      Sub-classes need to override this method (as of 1.8)
      • Methods inherited from class com.fasterxml.jackson.core.JsonFactory

        _checkInvalidCopy, _createContext, _createGenerator, _createParser, _createParser, _createParser, _createParser, _createUTF8Generator, _createWriter, _decorate, _decorate, _decorate, _decorate, _getBufferRecycler, _optimizedStreamFromURL, canHandleBinaryNatively, canUseCharArrays, canUseSchema, configure, configure, configure, createGenerator, createGenerator, createGenerator, createGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonGenerator, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createJsonParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, createParser, disable, disable, disable, enable, enable, enable, getCharacterEscapes, getInputDecorator, getOutputDecorator, getRootValueSeparator, hasJSONFormat, isEnabled, isEnabled, isEnabled, readResolve, requiresCustomCodec, requiresPropertyOrdering, setCharacterEscapes, setCodec, setInputDecorator, setOutputDecorator, setRootValueSeparator, version
    • Constructor Detail

      • MappingJsonFactory

        public MappingJsonFactory()
      • MappingJsonFactory

        public MappingJsonFactory(ObjectMapper mapper)
    • Method Detail

      • getCodec

        public final ObjectMapper getCodec()
        We'll override the method to return more specific type; co-variance helps here
        Overrides:
        getCodec in class com.fasterxml.jackson.core.JsonFactory
      • copy

        public com.fasterxml.jackson.core.JsonFactory copy()
        Overrides:
        copy in class com.fasterxml.jackson.core.JsonFactory
      • getFormatName

        public String getFormatName()
        Sub-classes need to override this method (as of 1.8)
        Overrides:
        getFormatName in class com.fasterxml.jackson.core.JsonFactory
      • hasFormat

        public com.fasterxml.jackson.core.format.MatchStrength hasFormat(com.fasterxml.jackson.core.format.InputAccessor acc)
                                                                  throws IOException
        Sub-classes need to override this method (as of 1.8)
        Overrides:
        hasFormat in class com.fasterxml.jackson.core.JsonFactory
        Throws:
        IOException

Copyright © 2014 FasterXML. All Rights Reserved.