Uses of Class
com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
Packages that use TypeDetector Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.impl -
-
Uses of TypeDetector in com.fasterxml.jackson.jr.ob
Methods in com.fasterxml.jackson.jr.ob that return TypeDetector Modifier and Type Method Description protected TypeDetector
JSON. _defaultTypeDetector(int features)
Methods in com.fasterxml.jackson.jr.ob with parameters of type TypeDetector Modifier and Type Method Description protected JSONReader
JSON. _defaultReader(int features, com.fasterxml.jackson.core.TreeCodec tc, TypeDetector td)
protected JSONWriter
JSON. _defaultWriter(int features, com.fasterxml.jackson.core.TreeCodec tc, TypeDetector td)
-
Uses of TypeDetector in com.fasterxml.jackson.jr.ob.impl
Fields in com.fasterxml.jackson.jr.ob.impl declared as TypeDetector Modifier and Type Field Description protected TypeDetector
JSONReader. _typeDetector
Object that is used to resolve types of values dynamically.protected TypeDetector
JSONWriter. _typeDetector
Object that is used to resolve types of values dynamically.Methods in com.fasterxml.jackson.jr.ob.impl that return TypeDetector Modifier and Type Method Description static TypeDetector
TypeDetector. blueprint(int features)
TypeDetector
TypeDetector. perOperationInstance(int features)
Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type TypeDetector Modifier and Type Method Description protected JSONReader
JSONReader. _with(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec tc, CollectionBuilder lb, MapBuilder mb)
Overridable method that all mutant factories call if a new instance is to be constructedprotected JSONWriter
JSONWriter. _with(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec tc)
Overridable method that all mutant factories call if a new instance is to be constructedConstructors in com.fasterxml.jackson.jr.ob.impl with parameters of type TypeDetector Constructor Description JSONReader(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec treeCodec, CollectionBuilder lb, MapBuilder mb)
Constructor used for creating the blueprint instances.JSONReader(JSONReader base, int features, TypeDetector td, com.fasterxml.jackson.core.JsonParser p)
Constructor used for per-operation (non-blueprint) instance.JSONWriter(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec tc)
Constructor used for creating differently configured blueprint instancesJSONWriter(JSONWriter base, int features, TypeDetector td, com.fasterxml.jackson.core.JsonGenerator g)
Constructor for non-blueprint instancesTypeDetector(TypeDetector base, int features)
-