Uses "mutant factory" pattern so that instances are immutable
(and thus fully thread-safe with no external synchronization);
new instances are constructed for different configurations.
Instances are initially constructed by ObjectMapper
and can be
reused, shared, cached; both because of thread-safety and because
instances are relatively light-weight.
Note
this class is NOT meant as sub-classable (with Jackson 2.8 and above) by users. It is left as non-final mostly to allow frameworks that require bytecode generation for proxying and similar use cases, but there is no expecation that functionality should be extended by sub-classing.
Modifier and Type | Field and Description |
---|---|
protected final DeserializationConfig | _config
General serialization configuration settings; while immutable, can use copy-constructor to create modified instances as necessary. |
protected final DefaultDeserializationContext | _context
Blueprint instance of deserialization context; used for creating actual instance when needed. |
protected final DataFormatReaders | _dataFormatReaders
Optional detector used for auto-detecting data format that byte-based input uses. |
private final TokenFilter | _filter
Filter to be consider for JsonParser. |
protected final InjectableValues | _injectableValues
Values that can be injected during deserialization, if any. |
protected transient JavaType | |
protected final JsonFactory | _parserFactory
Factory used for constructing |
protected final JsonDeserializer | _rootDeserializer
We may pre-fetch deserializer as soon as |
protected final ConcurrentHashMap | _rootDeserializers
Root-level cached deserializers. |
protected final FormatSchema | _schema
When using data format that uses a schema, schema is passed to parser. |
protected final boolean | _unwrapRoot
Flag that indicates whether root values are expected to be unwrapped or not |
protected final Object | _valueToUpdate
Instance to update with data binding; if any. |
protected final JavaType | _valueType
Declared type of value to instantiate during deserialization. |
private static final long |
Access | Constructor and Description |
---|---|
protected | ObjectReader(ObjectMapper mapper, DeserializationConfig config)
Constructor used by |
protected | ObjectReader(ObjectMapper mapper, DeserializationConfig config, JavaType valueType, Object valueToUpdate, FormatSchema schema, InjectableValues injectableValues)
Constructor called when a root deserializer should be fetched based on other configuration. |
protected | ObjectReader(ObjectReader base, DeserializationConfig config, JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, FormatSchema schema, InjectableValues injectableValues, DataFormatReaders dataFormatReaders)
Copy constructor used for building variations. |
protected | ObjectReader(ObjectReader base, DeserializationConfig config)
Copy constructor used when modifying simple feature flags |
protected | |
protected |
Modifier and Type | Method and Description |
---|---|
protected final void | |
protected Object | |
protected Object | |
protected final JsonNode | |
protected <T> MappingIterator | |
protected final JsonNode | |
protected final JsonNode | _bindAsTreeOrNull(JsonParser p)
Same as |
protected JsonParser | |
protected Object | |
protected Object | |
protected JsonNode | |
protected <T> MappingIterator | |
protected JsonDeserializer | _findRootDeserializer(DeserializationContext ctxt)
Method called to locate deserializer for the passed root-level value. |
protected JsonDeserializer | |
protected void | _initForMultiRead(DeserializationContext ctxt, JsonParser p)
Alternative to |
protected JsonToken | |
protected InputStream | |
protected InputStream | |
protected final JavaType | |
protected ObjectReader | _new(ObjectReader base, JsonFactory f)
Overridable factory method called by various "withXxx()" methods |
protected ObjectReader | _new(ObjectReader base, DeserializationConfig config)
Overridable factory method called by various "withXxx()" methods |
protected ObjectReader | _new(ObjectReader base, DeserializationConfig config, JavaType valueType, JsonDeserializer<Object> rootDeser, Object valueToUpdate, FormatSchema schema, InjectableValues injectableValues, DataFormatReaders dataFormatReaders)
Overridable factory method called by various "withXxx()" methods |
protected <T> MappingIterator | _newIterator(JsonParser p, DeserializationContext ctxt, JsonDeserializer<?> deser, boolean parserManaged)
Factory method used to create |
protected JsonDeserializer | _prefetchRootDeserializer(JavaType valueType)
Method called to locate deserializer ahead of time, if permitted by configuration. |
protected void | |
protected void | _reportUnkownFormat(DataFormatReaders detector, DataFormatReaders.
Method called to indicate that format detection failed to detect format of given input |
protected final void | |
protected void | |
protected ObjectReader | |
public ObjectReader | |
public ObjectReader | at(final JsonPointer pointer)
Convenience method to bind from |
public JsonNode | createArrayNode()
Implements abstract com. Method for construct root level Array nodes for Tree Model instances. |
protected DefaultDeserializationContext | createDeserializationContext(JsonParser p)
Internal helper method called to create an instance of |
protected DefaultDeserializationContext | |
public JsonParser | createNonBlockingByteArrayParser()
Factory method for constructing properly initialized |
public JsonNode | createObjectNode()
Implements abstract com. Method for construct root level Object nodes for Tree Model instances. |
public JsonParser | createParser(File src)
Factory method for constructing properly initialized |
public JsonParser | createParser(URL src)
Factory method for constructing properly initialized |
public JsonParser | createParser(InputStream in)
Factory method for constructing properly initialized |
public JsonParser | createParser(Reader r)
Factory method for constructing properly initialized |
public JsonParser | createParser(byte[] content)
Factory method for constructing properly initialized |
public JsonParser | createParser(byte[] content, int offset, int len)
Factory method for constructing properly initialized |
public JsonParser | createParser(String content)
Factory method for constructing properly initialized |
public JsonParser | createParser(char[] content)
Factory method for constructing properly initialized |
public JsonParser | createParser(char[] content, int offset, int len)
Factory method for constructing properly initialized |
public JsonParser | createParser(DataInput content)
Factory method for constructing properly initialized |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | forType(TypeReference<?> valueTypeRef)
Method for constructing a new reader instance that is configured to data bind into specified type. |
public ContextAttributes | |
public DeserializationConfig | |
public JsonFactory | getFactory()
Overrides com. Accessor for finding underlying data format factory
( |
public InjectableValues | |
public TypeFactory | |
public JavaType | |
public boolean | |
public boolean | |
public boolean | |
public boolean | |
public boolean | |
public JsonNode | |
public JsonNode | |
public <T extends TreeNode> T | readTree(JsonParser p)
Implements abstract com. Convenience method that binds content read using given parser, using configuration of this reader, except that content is bound as JSON tree instead of configured root value type. |
public JsonNode | readTree(InputStream src)
Method that reads content from given input source, using configuration of this reader, and binds it as JSON Tree. |
public JsonNode | |
public JsonNode | |
public JsonNode | |
public JsonNode | readTree(byte[] json, int offset, int len)
Same as |
public JsonNode | |
public <T> T | readValue(JsonParser p)
Method that binds content read using given parser, using configuration of this reader, including expected result type. |
public <T> T | readValue(JsonParser
Parser to use for decoding content to bind p, Class<T> Java value type to bind content to valueType)Implements abstract com. Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
public <T> T | readValue(JsonParser
Parser to use for decoding content to bind p, TypeReference<T> Java value type to bind content to valueTypeRef)Implements abstract com. Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
public <T> T | readValue(JsonParser
Parser to use for decoding content to bind p, ResolvedType Java value type to bind content to valueType)Implements abstract com. Convenience method that binds content read using given parser, using configuration of this reader, except that expected value type is specified with the call (instead of currently configured root type). |
public <T> T | readValue(JsonParser p, JavaType valueType)
Type-safe overloaded method, basically alias for |
public <T> T | readValue(InputStream
Source to read content from src)Method that binds content read from given input source, using configuration of this reader. |
public <T> T | readValue(InputStream
Source to read content from src, Class<T> Target type to bind content to valueType)Same as |
public <T> T | |
public <T> T | readValue(Reader
Source to read content from src, Class<T> Target type to bind content to valueType)Same as |
public <T> T | |
public <T> T | readValue(String
String that contains content to read src, Class<T> Target type to bind content to valueType)Same as |
public <T> T | readValue(byte[]
Byte array that contains encoded content to read content)Method that binds content read from given byte array, using configuration of this reader. |
public <T> T | readValue(byte[]
Byte array that contains encoded content to read content, Class<T> Target type to bind content to valueType)Same as |
public <T> T | readValue(byte[]
Byte array that contains encoded content to read buffer, int Offset of the first content byte in offset, int buffer Length of content in length)buffer , in bytesMethod that binds content read from given byte array, using configuration of this reader. |
public <T> T | readValue(byte[]
Byte array that contains encoded content to read buffer, int Offset of the first content byte in offset, int buffer Length of content in length, Class<T> buffer , in bytesTarget type to bind content to valueType)Same as |
public <T> T | |
public <T> T | readValue(File
File that contains content to read src, Class<T> Target type to bind content to valueType)Same as |
public <T> T | |
public <T> T | readValue(URL
URL pointing to resource that contains content to read src, Class<T> Target type to bind content to valueType)Same as |
public <T> T | |
public <T> T | readValue(JsonNode
Tree that contains content to convert content, Class<T> Target type to convert content to valueType)Same as |
public <T> T | |
public <T> T | readValue(DataInput
DataInput that contains content to read content, Class<T> Target type to bind content to valueType)Same as |
public <T> Iterator | readValues(JsonParser
Parser to use for decoding content to bind p, Class<T> Java value type to bind content to valueType)Implements abstract com. Convenience method that is equivalent to: withType(valueType).readValues(p); |
public <T> Iterator | readValues(JsonParser
Parser to use for decoding content to bind p, TypeReference<T> Java value type to bind content to valueTypeRef)Implements abstract com. Convenience method that is equivalent to: withType(valueTypeRef).readValues(p); |
public <T> Iterator | readValues(JsonParser
Parser to use for decoding content to bind p, ResolvedType Java value type to bind content to valueType)Implements abstract com. Convenience method that is equivalent to: withType(valueType).readValues(p); |
public <T> Iterator | readValues(JsonParser p, JavaType valueType)
Convenience method that is equivalent to: withType(valueType).readValues(p); |
public <T> MappingIterator | |
public <T> MappingIterator | |
public <T> MappingIterator | |
public <T> MappingIterator | readValues(String
String that contains JSON content to parse json)Overloaded version of |
public <T> MappingIterator | |
public final <T> MappingIterator | |
public <T> MappingIterator | |
public <T> MappingIterator | readValues(URL
URL to read to access JSON content to parse. src)Overloaded version of |
public <T> MappingIterator | |
public JsonParser | treeAsTokens(TreeNode
Content to traverse over n)Implements abstract com. Method for constructing a |
public <T> T | treeToValue(TreeNode
Tree to convert n, Class<T> Java target value type to convert content to valueType)Implements abstract com. Convenience method for converting given JSON tree into instance of specified value type. |
public <T> T | treeToValue(TreeNode n, JavaType valueType)
Same as |
public Version | version()
Implements abstract com. Implements com. Method that will return version information stored in and read from jar that contains this class. |
public ObjectReader | with(DeserializationFeature feature)
Method for constructing a new reader instance that is configured with specified feature enabled. |
public ObjectReader | with(DeserializationFeature first, DeserializationFeature... other)
Method for constructing a new reader instance that is configured with specified features enabled. |
public ObjectReader | with(DatatypeFeature feature)
Method for constructing a new reader instance that is configured with specified feature enabled. |
public ObjectReader | Returns: Reader instance with specified feature enabledFeature to enable featureMethod for constructing a new reader instance that is configured with specified feature enabled. |
public ObjectReader | Returns: Reader instance with specified feature enabledMethod for constructing a new reader instance that is configured with specified feature enabled. |
public ObjectReader | with(FormatFeature feature)
Method for constructing a new reader instance that is configured with specified feature enabled. |
public ObjectReader | with(DeserializationConfig config)
Mutant factory method that will construct a new instance that has
specified underlying |
public ObjectReader | with(InjectableValues injectableValues)
Method for constructing a new instance with configuration that uses
passed |
public ObjectReader | with(JsonNodeFactory f)
Method for constructing a new reader instance with configuration that uses
passed |
public ObjectReader | with(JsonFactory f)
Method for constructing a new reader instance with configuration that uses
passed |
public ObjectReader | with(FormatSchema schema)
Method for constructing a new instance with configuration that
passes specified |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | withFeatures(DeserializationFeature... features)
Method for constructing a new reader instance that is configured with specified features enabled. |
public ObjectReader | withFeatures(DatatypeFeature... features)
Method for constructing a new reader instance that is configured with specified features enabled. |
public ObjectReader | Returns: Reader instance with specified features enabledFeatures to enable featuresMethod for constructing a new reader instance that is configured with specified features enabled. |
public ObjectReader | withFeatures(FormatFeature... features)
Method for constructing a new reader instance that is configured with specified features enabled. |
public ObjectReader | Returns: Newly configured writer instanceData formats accepted, in decreasing order of priority (that is,
matches checked in listed order, first match wins) readers)Fluent factory method for constructing a reader that will try to
auto-detect underlying data format, using specified list of
|
public ObjectReader | Returns: Newly configured writer instanceDataFormatReaders to use for detecting underlying format. readers)Fluent factory method for constructing a reader that will try to
auto-detect underlying data format, using specified
|
public ObjectReader | |
public ObjectReader | without(DeserializationFeature feature)
Method for constructing a new reader instance that is configured with specified feature disabled. |
public ObjectReader | without(DeserializationFeature first, DeserializationFeature... other)
Method for constructing a new reader instance that is configured with specified features disabled. |
public ObjectReader | without(DatatypeFeature feature)
Method for constructing a new reader instance that is configured with specified feature disabled. |
public ObjectReader | Returns: Reader instance with specified feature disabledFeature to disable featureMethod for constructing a new reader instance that is configured with specified feature disabled. |
public ObjectReader | Returns: Reader instance with specified feature enabledMethod for constructing a new reader instance that is configured with specified feature disabled. |
public ObjectReader | without(FormatFeature feature)
Method for constructing a new reader instance that is configured with specified feature disabled. |
public ObjectReader | |
public ObjectReader | withoutFeatures(DeserializationFeature... features)
Method for constructing a new reader instance that is configured with specified features disabled. |
public ObjectReader | withoutFeatures(DatatypeFeature... features)
Method for constructing a new reader instance that is configured with specified features disabled. |
public ObjectReader | Returns: Reader instance with specified features disabledFeatures to disable featuresMethod for constructing a new reader instance that is configured with specified features disabled. |
public ObjectReader | withoutFeatures(FormatFeature... features)
Method for constructing a new reader instance that is configured with specified features disabled. |
public ObjectReader | withoutRootName()
Convenience method that is same as calling:
|
public ObjectReader | withRootName(String rootName)
Method for constructing a new instance with configuration that specifies what root name to expect for "root name unwrapping". |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | |
public ObjectReader | withValueToUpdate(Object value)
Method for constructing a new instance with configuration that updates passed Object (as root value), instead of constructing a new value. |
public ObjectReader | |
public void | writeTree(JsonGenerator
Generator to use for serializing value g, TreeNode Tree to serialize rootNode)Implements abstract com. Method for serializing JSON content from given Tree instance, using specified generator. |
public void | writeValue(JsonGenerator
Generator to use for serializing value gen, Object Value to serialize value)Implements abstract com. Method to serialize given Java Object, using generator provided. |