Uses of Class
org.codehaus.jackson.map.ObjectReader
-
Packages that use ObjectReader Package Description org.codehaus.jackson.map 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 viaObjectMapperclass, as well as convenience methods included inJsonParser -
-
Uses of ObjectReader in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return ObjectReader Modifier and Type Method Description ObjectReaderObjectMapper. reader()Factory method for constructingObjectReaderwith default settings.ObjectReaderObjectMapper. reader(Class<?> type)Factory method for constructingObjectReaderthat will read or update instances of specified typeObjectReaderObjectMapper. reader(FormatSchema schema)Factory method for constructingObjectReaderthat will pass specific schema object toJsonParserused for reading content.ObjectReaderObjectMapper. reader(InjectableValues injectableValues)Factory method for constructingObjectReaderthat will use specified injectable values.ObjectReaderObjectMapper. reader(JsonNodeFactory f)Factory method for constructingObjectReaderthat will use specifiedJsonNodeFactoryfor constructing JSON trees.ObjectReaderObjectMapper. reader(JavaType type)Factory method for constructingObjectReaderthat will read or update instances of specified typeObjectReaderObjectMapper. reader(TypeReference<?> type)Factory method for constructingObjectReaderthat will read or update instances of specified typeObjectReaderObjectMapper. readerForUpdating(Object valueToUpdate)Factory method for constructingObjectReaderthat will update given Object (usually Bean, but can be a Collection or Map as well, but NOT an array) with JSON data.ObjectReaderObjectMapper. schemaBasedReader(FormatSchema schema)Deprecated.Since 1.9, useObjectMapper.reader(FormatSchema)instead.ObjectReaderObjectMapper. updatingReader(Object valueToUpdate)Deprecated.Since 1.9, useObjectMapper.readerForUpdating(java.lang.Object)instead.ObjectReaderObjectReader. withInjectableValues(InjectableValues injectableValues)ObjectReaderObjectReader. withNodeFactory(JsonNodeFactory f)ObjectReaderObjectReader. withSchema(FormatSchema schema)ObjectReaderObjectReader. withType(Class<?> valueType)ObjectReaderObjectReader. withType(Type valueType)ObjectReaderObjectReader. withType(JavaType valueType)ObjectReaderObjectReader. withType(TypeReference<?> valueTypeRef)ObjectReaderObjectReader. withValueToUpdate(Object value)Constructors in org.codehaus.jackson.map with parameters of type ObjectReader Constructor Description ObjectReader(ObjectReader base, DeserializationConfig config, JavaType valueType, Object valueToUpdate, FormatSchema schema, InjectableValues injectableValues)Copy constructor used for building variations.
-