Class JacksonJrExtension


  • public abstract class JacksonJrExtension
    extends java.lang.Object
    Simple interface that processing additions can implement to be easily pluggable to main Jackson jr handler, JSON. Extensions typically provide things like custom readers (ValueReader) and writers (ValueWriter) (via ReaderWriterProvider), and modifers (ReaderWriterModifier) that allow customizing aspects of JSON reading and writing.
    Since:
    2.11
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      protected abstract void register​(ExtensionContext ctxt)
      Method called by JSON to let extension register handlers it wants to.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • JacksonJrExtension

        public JacksonJrExtension()
    • Method Detail

      • register

        protected abstract void register​(ExtensionContext ctxt)
        Method called by JSON to let extension register handlers it wants to.
        Parameters:
        ctxt - Context that allows extension to register handlers