Uses of Class
com.fasterxml.jackson.databind.ObjectReader

Packages that use ObjectReader
com.fasterxml.jackson.databind Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is via ObjectMapper class, as well as convenience methods included in JsonParser 
 

Uses of ObjectReader in com.fasterxml.jackson.databind
 

Methods in com.fasterxml.jackson.databind that return ObjectReader
 ObjectReader ObjectMapper.reader()
          Factory method for constructing ObjectReader with default settings.
 ObjectReader ObjectMapper.reader(Class<?> type)
          Factory method for constructing ObjectReader that will read or update instances of specified type
 ObjectReader ObjectMapper.reader(DeserializationFeature feature)
          Factory method for constructing ObjectReader with specified feature enabled (compared to settings that this mapper instance has).
 ObjectReader ObjectMapper.reader(DeserializationFeature first, DeserializationFeature... other)
          Factory method for constructing ObjectReader with specified features enabled (compared to settings that this mapper instance has).
 ObjectReader ObjectMapper.reader(com.fasterxml.jackson.core.FormatSchema schema)
          Factory method for constructing ObjectReader that will pass specific schema object to JsonParser used for reading content.
 ObjectReader ObjectMapper.reader(InjectableValues injectableValues)
          Factory method for constructing ObjectReader that will use specified injectable values.
 ObjectReader ObjectMapper.reader(JavaType type)
          Factory method for constructing ObjectReader that will read or update instances of specified type
 ObjectReader ObjectMapper.reader(JsonNodeFactory f)
          Factory method for constructing ObjectReader that will use specified JsonNodeFactory for constructing JSON trees.
 ObjectReader ObjectMapper.reader(com.fasterxml.jackson.core.type.TypeReference<?> type)
          Factory method for constructing ObjectReader that will read or update instances of specified type
 ObjectReader ObjectMapper.readerForUpdating(Object valueToUpdate)
          Factory method for constructing ObjectReader that will update given Object (usually Bean, but can be a Collection or Map as well, but NOT an array) with JSON data.
 ObjectReader ObjectMapper.readerWithView(Class<?> view)
          Factory method for constructing ObjectReader that will deserialize objects using specified JSON View (filter).
 ObjectReader ObjectReader.with(DeserializationFeature feature)
          Method for constructing a new reader instance that is configured with specified feature enabled.
 ObjectReader ObjectReader.with(DeserializationFeature first, DeserializationFeature... other)
          Method for constructing a new reader instance that is configured with specified features enabled.
 ObjectReader ObjectReader.with(com.fasterxml.jackson.core.FormatSchema schema)
          Method for constructing a new instance with configuration that passes specified FormatSchema to JsonParser that is constructed for parsing content.
 ObjectReader ObjectReader.with(InjectableValues injectableValues)
          Method for constructing a new instance with configuration that uses passed InjectableValues to provide injectable values.
 ObjectReader ObjectReader.with(JsonNodeFactory f)
          Method for constructing a new reader instance with configuration that uses passed JsonNodeFactory for constructing JsonNode instances.
 ObjectReader ObjectReader.with(Locale l)
           
 ObjectReader ObjectReader.with(TimeZone tz)
           
 ObjectReader ObjectReader.withFeatures(DeserializationFeature... features)
          Method for constructing a new reader instance that is configured with specified features enabled.
 ObjectReader ObjectReader.without(DeserializationFeature feature)
          Method for constructing a new reader instance that is configured with specified feature disabled.
 ObjectReader ObjectReader.without(DeserializationFeature first, DeserializationFeature... other)
          Method for constructing a new reader instance that is configured with specified features disabled.
 ObjectReader ObjectReader.withoutFeatures(DeserializationFeature... features)
          Method for constructing a new reader instance that is configured with specified features disabled.
 ObjectReader ObjectReader.withRootName(String rootName)
          Method for constructing a new instance with configuration that specifies what root name to expect for "root name unwrapping".
 ObjectReader ObjectReader.withType(Class<?> valueType)
          Method for constructing a new reader instance that is configured to data bind into specified type.
 ObjectReader ObjectReader.withType(JavaType valueType)
          Method for constructing a new reader instance that is configured to data bind into specified type.
 ObjectReader ObjectReader.withType(Type valueType)
          Method for constructing a new reader instance that is configured to data bind into specified type.
 ObjectReader ObjectReader.withType(com.fasterxml.jackson.core.type.TypeReference<?> valueTypeRef)
          Method for constructing a new reader instance that is configured to data bind into specified type.
 ObjectReader 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.
 ObjectReader ObjectReader.withView(Class<?> activeView)
          Method for constructing a new instance with configuration that uses specified View for filtering.
 

Constructors in com.fasterxml.jackson.databind with parameters of type ObjectReader
ObjectReader(ObjectReader base, DeserializationConfig config)
          Copy constructor used when modifying simple feature flags
ObjectReader(ObjectReader base, DeserializationConfig config, JavaType valueType, Object valueToUpdate, com.fasterxml.jackson.core.FormatSchema schema, InjectableValues injectableValues)
          Copy constructor used for building variations.
 



Copyright © 2012 fasterxml.com. All Rights Reserved.