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 ReaderWriterProviderJSON.Builder. readerWriterProvider()Methods in com.fasterxml.jackson.jr.ob with parameters of type ReaderWriterProvider Modifier and Type Method Description JSONJSON. 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 classReaderWriterProvider.PairImplementation 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 ReaderWriterProviderReaderWriterProvider.Pair. _primaryprotected ReaderWriterProviderReaderWriterProvider.Pair. _secondaryMethods in com.fasterxml.jackson.jr.ob.api that return ReaderWriterProvider Modifier and Type Method Description static ReaderWriterProviderReaderWriterProvider.Pair. of(ReaderWriterProvider primary, ReaderWriterProvider secondary)Factory method for "combining" given 2 providers so that if neither isnull, aReaderWriterProvider.Pairis constructed; otherwise if one is non-null, that provider is returned; or if both arenulls,nullis returned.Methods in com.fasterxml.jackson.jr.ob.api with parameters of type ReaderWriterProvider Modifier and Type Method Description abstract ExtensionContextExtensionContext. appendProvider(ReaderWriterProvider provider)Method for inserting specifiedReaderWriterProvideras the lowest priority provider (that is, having lower precedence than anything registered so far)abstract ExtensionContextExtensionContext. insertProvider(ReaderWriterProvider provider)Method for inserting specifiedReaderWriterProvideras the highest priority provider (that is, having higher precedence than anything registered so far)static ReaderWriterProviderReaderWriterProvider.Pair. of(ReaderWriterProvider primary, ReaderWriterProvider secondary)Factory method for "combining" given 2 providers so that if neither isnull, aReaderWriterProvider.Pairis constructed; otherwise if one is non-null, that provider is returned; or if both arenulls,nullis 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 ReaderWriterProviderValueReaderLocator. _readerProviderProvider for custom readers, if any; may be null.protected ReaderWriterProviderValueWriterLocator. _writerProviderProvider for custom writers, if any; may be null.Methods in com.fasterxml.jackson.jr.ob.impl that return ReaderWriterProvider Modifier and Type Method Description ReaderWriterProviderValueReaderLocator. readerWriterProvider()Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type ReaderWriterProvider Modifier and Type Method Description static ValueReaderLocatorValueReaderLocator. blueprint(ReaderWriterProvider rwp, ReaderWriterModifier rwm)static ValueWriterLocatorValueWriterLocator. blueprint(ReaderWriterProvider rwp, ReaderWriterModifier rwm)ValueReaderLocatorValueReaderLocator. with(ReaderWriterProvider rwp)ValueWriterLocatorValueWriterLocator. 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)
-