Uses of Class
com.fasterxml.jackson.jr.ob.impl.ValueReader
-
Packages that use ValueReader Package Description com.fasterxml.jackson.jr.ob.impl -
-
Uses of ValueReader in com.fasterxml.jackson.jr.ob.impl
Subclasses of ValueReader in com.fasterxml.jackson.jr.ob.impl Modifier and Type Class Description class
AnyReader
ValueReader
used for "untyped" values; ones that are bound to whateverObject
is the natural mapping to JSON value that parser currently points toclass
ArrayReader
Reader for typed Array values.class
BeanReader
Class that contains information about dynamically introspected Bean types, to be able to deserialize (read) JSON into a POJO and serialize (write) POJO as JSON.class
CollectionReader
Reader for typedCollection
values.class
EnumReader
Reader for Enum values: needed because we need a simpleMap
for efficient conversion from id (gotten withEnum.toString()
to value.class
JSONReader
Object that handles construction of simple Objects from JSON.class
MapReader
Reader for typedMap
values.class
SimpleValueReader
ValueReader
used for simple scalar types and related.Fields in com.fasterxml.jackson.jr.ob.impl declared as ValueReader Modifier and Type Field Description protected ValueReader
ArrayReader. _valueReader
protected ValueReader
CollectionReader. _valueReader
protected ValueReader
MapReader. _valueReader
Fields in com.fasterxml.jackson.jr.ob.impl with type parameters of type ValueReader Modifier and Type Field Description protected java.util.Map<ClassKey,ValueReader>
TypeDetector. _incompleteReaders
During resolution, some readers may be in-progress, but need to be linked: for example, with cyclic type references.protected java.util.concurrent.ConcurrentHashMap<ClassKey,ValueReader>
TypeDetector. _knownReaders
Set ofValueReader
s that we have resolvedMethods in com.fasterxml.jackson.jr.ob.impl that return ValueReader Modifier and Type Method Description protected ValueReader
TypeDetector. collectionReader(java.lang.Class<?> collectionType, ResolvedType valueType)
protected ValueReader
TypeDetector. collectionReader(java.lang.Class<?> contextType, java.lang.reflect.Type collectionType)
protected ValueReader
TypeDetector. createReader(java.lang.Class<?> contextType, java.lang.Class<?> type, java.lang.reflect.Type genericType)
ValueReader
TypeDetector. enumReader(java.lang.Class<?> enumType)
ValueReader
TypeDetector. findReader(java.lang.Class<?> raw)
Method used during deserialization to find handler for given non-generic type.ValueReader
BeanPropertyReader. getReader()
protected ValueReader
TypeDetector. mapReader(java.lang.Class<?> mapType, ResolvedType valueType)
protected ValueReader
TypeDetector. mapReader(java.lang.Class<?> contextType, java.lang.reflect.Type mapType)
Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type ValueReader Modifier and Type Method Description BeanPropertyReader
BeanPropertyReader. withReader(ValueReader vr)
Constructors in com.fasterxml.jackson.jr.ob.impl with parameters of type ValueReader Constructor Description ArrayReader(java.lang.Class<?> t, ValueReader vr)
BeanPropertyReader(BeanPropertyReader src, ValueReader vr)
CollectionReader(java.lang.Class<?> t, ValueReader vr)
MapReader(java.lang.Class<?> t, ValueReader vr)
-