Package com.fasterxml.jackson.jr.ob
Class JacksonJrExtension
- java.lang.Object
-
- com.fasterxml.jackson.jr.ob.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
) (viaReaderWriterProvider
), and modifers (ReaderWriterModifier
) that allow customizing aspects of JSON reading and writing.- Since:
- 2.11
-
-
Constructor Summary
Constructors Constructor Description JacksonJrExtension()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description protected abstract void
register(ExtensionContext ctxt)
Method called byJSON
to let extension register handlers it wants to.
-
-
-
Method Detail
-
register
protected abstract void register(ExtensionContext ctxt)
Method called byJSON
to let extension register handlers it wants to.- Parameters:
ctxt
- Context that allows extension to register handlers
-
-