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 classAnyReaderValueReaderused for "untyped" values; ones that are bound to whateverObjectis the natural mapping to JSON value that parser currently points toclassArrayReaderReader for typed Array values.classBeanReaderClass that contains information about dynamically introspected Bean types, to be able to deserialize (read) JSON into a POJO and serialize (write) POJO as JSON.classCollectionReaderReader for typedCollectionvalues.classEnumReaderReader for Enum values: needed because we need a simpleMapfor efficient conversion from id (gotten withEnum.toString()to value.classJSONReaderObject that handles construction of simple Objects from JSON.classMapReaderReader for typedMapvalues.classSimpleValueReaderValueReaderused for simple scalar types and related.Fields in com.fasterxml.jackson.jr.ob.impl declared as ValueReader Modifier and Type Field Description protected ValueReaderArrayReader. _valueReaderprotected ValueReaderCollectionReader. _valueReaderprotected ValueReaderMapReader. _valueReaderFields in com.fasterxml.jackson.jr.ob.impl with type parameters of type ValueReader Modifier and Type Field Description protected Map<ClassKey,ValueReader>TypeDetector. _incompleteReadersDuring resolution, some readers may be in-progress, but need to be linked: for example, with cyclic type references.protected ConcurrentHashMap<ClassKey,ValueReader>TypeDetector. _knownReadersSet ofValueReaders that we have resolvedMethods in com.fasterxml.jackson.jr.ob.impl that return ValueReader Modifier and Type Method Description protected ValueReaderTypeDetector. collectionReader(Class<?> collectionType, ResolvedType valueType)protected ValueReaderTypeDetector. collectionReader(Class<?> contextType, Type collectionType)protected ValueReaderTypeDetector. createReader(Class<?> contextType, Class<?> type, Type genericType)ValueReaderTypeDetector. enumReader(Class<?> enumType)ValueReaderTypeDetector. findReader(Class<?> raw)Method used during deserialization to find handler for given non-generic type.ValueReaderBeanPropertyReader. getReader()protected ValueReaderTypeDetector. mapReader(Class<?> mapType, ResolvedType valueType)protected ValueReaderTypeDetector. mapReader(Class<?> contextType, Type mapType)Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type ValueReader Modifier and Type Method Description BeanPropertyReaderBeanPropertyReader. withReader(ValueReader vr)Constructors in com.fasterxml.jackson.jr.ob.impl with parameters of type ValueReader Constructor Description ArrayReader(Class<?> t, ValueReader vr)BeanPropertyReader(BeanPropertyReader src, ValueReader vr)CollectionReader(Class<?> t, ValueReader vr)MapReader(Class<?> t, ValueReader vr)
-