Uses of Class
com.fasterxml.jackson.jr.ob.api.ReaderWriterProvider
-
Packages that use ReaderWriterProvider Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.api com.fasterxml.jackson.jr.ob.impl -
-
Uses of ReaderWriterProvider in com.fasterxml.jackson.jr.ob
Methods in com.fasterxml.jackson.jr.ob that return ReaderWriterProvider Modifier and Type Method Description ReaderWriterProvider
JSON.Builder. readerWriterProvider()
Methods in com.fasterxml.jackson.jr.ob with parameters of type ReaderWriterProvider Modifier and Type Method Description JSON
JSON. with(ReaderWriterProvider rwp)
Deprecated.Since 2.11 should register usingJacksonJrExtension
-
Uses of ReaderWriterProvider in com.fasterxml.jackson.jr.ob.api
Subclasses of ReaderWriterProvider in com.fasterxml.jackson.jr.ob.api Modifier and Type Class Description static class
ReaderWriterProvider.Pair
Implementation that allows chaining of two providers, one (first) with higher precedence than the other (second).Fields in com.fasterxml.jackson.jr.ob.api declared as ReaderWriterProvider Modifier and Type Field Description protected ReaderWriterProvider
ReaderWriterProvider.Pair. _primary
protected ReaderWriterProvider
ReaderWriterProvider.Pair. _secondary
Methods in com.fasterxml.jackson.jr.ob.api that return ReaderWriterProvider Modifier and Type Method Description static ReaderWriterProvider
ReaderWriterProvider.Pair. of(ReaderWriterProvider primary, ReaderWriterProvider secondary)
Factory method for "combining" given 2 providers so that if neither isnull
, aReaderWriterProvider.Pair
is constructed; otherwise if one is non-null, that provider is returned; or if both arenull
s,null
is returned.Methods in com.fasterxml.jackson.jr.ob.api with parameters of type ReaderWriterProvider Modifier and Type Method Description abstract ExtensionContext
ExtensionContext. appendProvider(ReaderWriterProvider provider)
Method for inserting specifiedReaderWriterProvider
as the lowest priority provider (that is, having lower precedence than anything registered so far)abstract ExtensionContext
ExtensionContext. insertProvider(ReaderWriterProvider provider)
Method for inserting specifiedReaderWriterProvider
as the highest priority provider (that is, having higher precedence than anything registered so far)static ReaderWriterProvider
ReaderWriterProvider.Pair. of(ReaderWriterProvider primary, ReaderWriterProvider secondary)
Factory method for "combining" given 2 providers so that if neither isnull
, aReaderWriterProvider.Pair
is constructed; otherwise if one is non-null, that provider is returned; or if both arenull
s,null
is returned.Constructors in com.fasterxml.jackson.jr.ob.api with parameters of type ReaderWriterProvider Constructor Description Pair(ReaderWriterProvider p, ReaderWriterProvider s)
-
Uses of ReaderWriterProvider in com.fasterxml.jackson.jr.ob.impl
Fields in com.fasterxml.jackson.jr.ob.impl declared as ReaderWriterProvider Modifier and Type Field Description protected ReaderWriterProvider
ValueReaderLocator. _readerProvider
Provider for custom readers, if any; may be null.protected ReaderWriterProvider
ValueWriterLocator. _writerProvider
Provider for custom writers, if any; may be null.Methods in com.fasterxml.jackson.jr.ob.impl that return ReaderWriterProvider Modifier and Type Method Description ReaderWriterProvider
ValueReaderLocator. readerWriterProvider()
Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type ReaderWriterProvider Modifier and Type Method Description static ValueReaderLocator
ValueReaderLocator. blueprint(ReaderWriterProvider rwp, ReaderWriterModifier rwm)
static ValueWriterLocator
ValueWriterLocator. blueprint(ReaderWriterProvider rwp, ReaderWriterModifier rwm)
ValueReaderLocator
ValueReaderLocator. with(ReaderWriterProvider rwp)
ValueWriterLocator
ValueWriterLocator. with(ReaderWriterProvider rwp)
Constructors in com.fasterxml.jackson.jr.ob.impl with parameters of type ReaderWriterProvider Constructor Description ValueReaderLocator(ReaderWriterProvider rwp, ReaderWriterModifier rwm)
Constructor for the blueprint instanceValueReaderLocator(ValueReaderLocator base, ReaderWriterProvider rwp, ReaderWriterModifier rwm)
ValueWriterLocator(int features, ReaderWriterProvider rwp, ReaderWriterModifier rwm)
Constructor for the blueprint instance (and variations)
-