- JacksonJrExtension - Class in com.fasterxml.jackson.jr.ob
-
Simple interface that processing additions can implement to be easily pluggable
to main Jackson jr handler,
JSON
.
- JacksonJrExtension() - Constructor for class com.fasterxml.jackson.jr.ob.JacksonJrExtension
-
- JacksonJrsTreeCodec - Class in com.fasterxml.jackson.jr.stree
-
TreeCodec
implementation that can build "simple", immutable
(read-only) trees out of JSON: these are represented as subtypes
of
JrsValue
("Jrs" from "jackson JR Simple").
- JacksonJrsTreeCodec() - Constructor for class com.fasterxml.jackson.jr.stree.JacksonJrsTreeCodec
-
- JacksonJrsTreeCodec(ObjectCodec) - Constructor for class com.fasterxml.jackson.jr.stree.JacksonJrsTreeCodec
-
- JrsArray - Class in com.fasterxml.jackson.jr.stree
-
- JrsArray() - Constructor for class com.fasterxml.jackson.jr.stree.JrsArray
-
- JrsArray(List<JrsValue>) - Constructor for class com.fasterxml.jackson.jr.stree.JrsArray
-
- JrsBoolean - Class in com.fasterxml.jackson.jr.stree
-
- JrsEmbeddedObject - Class in com.fasterxml.jackson.jr.stree
-
Container for opaque embedded Java objects, exposed by some non-JSON
backends: for example, binary formats would expose binary data natively
as such tokens.
- JrsEmbeddedObject(Object) - Constructor for class com.fasterxml.jackson.jr.stree.JrsEmbeddedObject
-
- JrSimpleTreeExtension - Class in com.fasterxml.jackson.jr.stree
-
- JrSimpleTreeExtension() - Constructor for class com.fasterxml.jackson.jr.stree.JrSimpleTreeExtension
-
- JrSimpleTreeExtension(JacksonJrsTreeCodec) - Constructor for class com.fasterxml.jackson.jr.stree.JrSimpleTreeExtension
-
- JrsMissing - Class in com.fasterxml.jackson.jr.stree
-
Virtual node used instead of `null`, when an operation does not match an
actual existing node; this can significantly simplify handling when no
null checks are needed.
- JrsMissing() - Constructor for class com.fasterxml.jackson.jr.stree.JrsMissing
-
- JrsNull - Class in com.fasterxml.jackson.jr.stree
-
Virtual node used instead of `null`, when an operation does not match an
actual existing node; this can significantly simplify handling when no
null checks are needed.
- JrsNull() - Constructor for class com.fasterxml.jackson.jr.stree.JrsNull
-
- JrsNumber - Class in com.fasterxml.jackson.jr.stree
-
- JrsNumber(Number) - Constructor for class com.fasterxml.jackson.jr.stree.JrsNumber
-
- JrsObject - Class in com.fasterxml.jackson.jr.stree
-
- JrsObject() - Constructor for class com.fasterxml.jackson.jr.stree.JrsObject
-
- JrsObject(Map<String, JrsValue>) - Constructor for class com.fasterxml.jackson.jr.stree.JrsObject
-
- JrsString - Class in com.fasterxml.jackson.jr.stree
-
- JrsString(String) - Constructor for class com.fasterxml.jackson.jr.stree.JrsString
-
- JrsTreeTraversingParser - Class in com.fasterxml.jackson.jr.stree.util
-
Facade over
JrsValue
that implements
JsonParser
to allow
accessing contents of JSON tree in alternate form (stream of tokens).
- JrsTreeTraversingParser(JrsValue) - Constructor for class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
- JrsTreeTraversingParser(JrsValue, ObjectCodec) - Constructor for class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
- JrsValue - Class in com.fasterxml.jackson.jr.stree
-
Shared base class for all "simple" node types of Jackson Jr
"simple tree" package; implements
TreeNode
and is usable
via matching
TreeCodec
implementation (see
JacksonJrsTreeCodec
).
- JrsValue() - Constructor for class com.fasterxml.jackson.jr.stree.JrsValue
-
- JrsValue.Scalar - Class in com.fasterxml.jackson.jr.stree
-
Intermediate base class for non-structured types, other than
JrsMissing
.
- JSON - Class in com.fasterxml.jackson.jr.ob
-
Main entry point for functionality for reading and writing JSON
and configuring details of reading and writing.
- JSON() - Constructor for class com.fasterxml.jackson.jr.ob.JSON
-
- JSON(JsonFactory) - Constructor for class com.fasterxml.jackson.jr.ob.JSON
-
- JSON(JSON.Builder) - Constructor for class com.fasterxml.jackson.jr.ob.JSON
-
- JSON(JSON, int, JsonFactory, TreeCodec, JSONReader, JSONWriter, PrettyPrinter) - Constructor for class com.fasterxml.jackson.jr.ob.JSON
-
- JSON(JSON, ValueReaderLocator, ValueWriterLocator) - Constructor for class com.fasterxml.jackson.jr.ob.JSON
-
- JSON.Builder - Class in com.fasterxml.jackson.jr.ob
-
Builder class that needs to be used for certain kind of "static" configuration
(settings that can not vary on per-call basis for
JSON
), such as
Extension registration.
- JSON.Feature - Enum in com.fasterxml.jackson.jr.ob
-
Simple on/off (enabled/disabled) features for
JSON
; used for simple
configuration aspects.
- JSONAsObjectCodec - Class in com.fasterxml.jackson.jr.ob.impl
-
- JSONAsObjectCodec(JSON) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- JSONAsObjectCodec(JSON, JsonFactory) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- JSONAsObjectCodec(JSON, JsonFactory, TreeCodec) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- JSONComposer<T> - Class in com.fasterxml.jackson.jr.ob
-
Root-level composer object that acts as streaming "builder"
object, using an underlying
JsonGenerator
object.
- JSONComposer(int, JsonGenerator, boolean) - Constructor for class com.fasterxml.jackson.jr.ob.JSONComposer
-
- JSONComposer(int, JsonGenerator, SegmentedStringWriter) - Constructor for class com.fasterxml.jackson.jr.ob.JSONComposer
-
- JSONComposer(int, JsonGenerator, ByteArrayBuilder) - Constructor for class com.fasterxml.jackson.jr.ob.JSONComposer
-
- JSONComposer(int, T) - Constructor for class com.fasterxml.jackson.jr.ob.JSONComposer
-
- JSONObjectException - Exception in com.fasterxml.jackson.jr.ob
-
Standard exception exposed by this package; equivalent of
com.fasterxml.jackson.databind.JsonMappingException
(and, in fact, much of implementation came from that class, but
had to be cut-n-pasted since we do not depend on databind package).
- JSONObjectException(String) - Constructor for exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- JSONObjectException(String, Throwable) - Constructor for exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- JSONObjectException(String, JsonLocation) - Constructor for exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- JSONObjectException(String, JsonLocation, Throwable) - Constructor for exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- JSONObjectException.Reference - Class in com.fasterxml.jackson.jr.ob
-
Simple bean class used to contain references.
- JSONReader - Class in com.fasterxml.jackson.jr.ob.impl
-
Root-level helper object that handles initial delegation to actual
readers (which are
ValueReader
s), but does not handle
any of reading itself (despite name).
- JSONReader(CollectionBuilder, MapBuilder) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Constructor used for creating the blueprint instances.
- JSONReader(JSONReader, int, ValueReaderLocator, TreeCodec, JsonParser) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Constructor used for per-operation (non-blueprint) instance.
- jsonReader(JSONReader) - Method in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- jsonReader() - Method in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- JSONWriter - Class in com.fasterxml.jackson.jr.ob.impl
-
Object that handles serialization of simple Objects into underlying
data format (usually JSON).
- JSONWriter() - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Constructor used for creating differently configured blueprint
instances
- JSONWriter(JSONWriter, int, ValueWriterLocator, TreeCodec, JsonGenerator) - Constructor for class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Constructor for non-blueprint instances.
- jsonWriter(JSONWriter) - Method in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- jsonWriter() - Method in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _aliasMapping - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
Mapping of aliased names to primary names (direct linkage unfortunately
impractical due to implementation limits).
- _appendClassDesc(StringBuilder) - Method in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _appendPathDesc(StringBuilder) - Method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- _at(JsonPointer) - Method in class com.fasterxml.jackson.jr.stree.JrsArray
-
- _at(JsonPointer) - Method in class com.fasterxml.jackson.jr.stree.JrsMissing
-
- _at(JsonPointer) - Method in class com.fasterxml.jackson.jr.stree.JrsObject
-
- _at(JsonPointer) - Method in class com.fasterxml.jackson.jr.stree.JrsValue
-
- _at(JsonPointer) - Method in class com.fasterxml.jackson.jr.stree.JrsValue.Scalar
-
- _bean() - Method in class com.fasterxml.jackson.jr.ob.impl.BeanPropertyReader
-
- _bean() - Method in class com.fasterxml.jackson.jr.ob.impl.BeanPropertyWriter
-
- _bindings - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _buildMap(int) - Method in class com.fasterxml.jackson.jr.ob.impl.DeferredMap
-
- _buildMessage() - Method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- _byIndex - Variable in class com.fasterxml.jackson.jr.ob.impl.EnumReader
-
- _byName - Variable in class com.fasterxml.jackson.jr.ob.impl.EnumReader
-
- _byteWriter - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _cache - Variable in class com.fasterxml.jackson.jr.type.TypeResolver
-
- _checkDups - Variable in class com.fasterxml.jackson.jr.ob.api.MapBuilder
-
- _checkResultType(Class<?>, Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _checkTreeCodec() - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _checkUnknown(Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _child - Variable in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _childClosed() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _close(Closeable) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _closeChild() - Method in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- _closeChild() - Method in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _closeChild() - Method in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- _closeChild() - Method in class com.fasterxml.jackson.jr.ob.comp.SequenceComposer
-
- _closed - Variable in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
Flag that indicates whether parser is closed or not.
- _closeGenerator - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _closeParser - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Flag that indicates whether input
JsonParser
should be closed
when we are done or not; generally only called when caller did not
pass JsonParser.
- _closeWithError(Closeable, Exception) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _codec - Variable in class com.fasterxml.jackson.jr.stree.JrSimpleTreeExtension
-
- _collection - Variable in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- _collectionBuilder - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Handler that takes care of constructing
Map
s as needed
- _collectionBuilder(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- _collectionBuilder - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _collectionType - Variable in class com.fasterxml.jackson.jr.ob.api.CollectionBuilder
-
Optional
Collection
implementation class, used when specific
implementation is desired.
- _collectionType - Variable in class com.fasterxml.jackson.jr.ob.impl.CollectionReader
-
- _config(JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _config(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _createReader(Class<?>, Class<?>, Type) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
- _current - Variable in class com.fasterxml.jackson.jr.ob.api.CollectionBuilder.Default
-
- _current - Variable in class com.fasterxml.jackson.jr.ob.api.MapBuilder.Default
-
- _defaultCtor - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _defaultReader() - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _defaultWriter() - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _elementType - Variable in class com.fasterxml.jackson.jr.ob.impl.ArrayReader
-
- _elemType - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _erasedType - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _extContext - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.api.CollectionBuilder
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.api.MapBuilder
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
Feature flags that are enabled
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _fetchLong(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _fieldName - Variable in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _fieldName - Variable in class com.fasterxml.jackson.jr.ob.JSONObjectException.Reference
-
Name of field (for beans) or key (for Maps) that is part
of the reference.
- _findPOJOSerializationType(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
Method called to locate a serializer for given type and return numeric id.
- _finish() - Method in class com.fasterxml.jackson.jr.ob.comp.ArrayComposer
-
- _finish() - Method in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- _finish() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _finish() - Method in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _finish() - Method in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- _finish() - Method in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _from - Variable in class com.fasterxml.jackson.jr.ob.JSONObjectException.Reference
-
Object through which reference was resolved.
- _generator - Variable in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- _generator - Variable in class com.fasterxml.jackson.jr.ob.comp.SequenceComposer
-
- _generator - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _handleEOF() - Method in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
- _handleIOException(IOException) - Method in class com.fasterxml.jackson.jr.ob.ValueIterator
-
- _handleMappingException(JSONObjectException) - Method in class com.fasterxml.jackson.jr.ob.ValueIterator
-
- _ignorableNames - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _ignorableNames - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
Possible per-class definition of names that may be ignored safely
during deserialization.
- _illegalCall() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _incompleteReaders - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
During resolution, some readers may be in-progress, but need to be
linked: for example, with cyclic type references.
- _index - Variable in class com.fasterxml.jackson.jr.ob.JSONObjectException.Reference
-
Index within a
Collection
instance that contained
the reference; used if index is relevant and available.
- _initForReading(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _interfaces - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _json - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _jsonFactory - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _jsonFactory - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Underlying JSON factory used for creating Streaming parsers and
generators.
- _kind - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _knownReaders - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
- _knownSerTypes - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
Mapping from classes to resolved type constants or indexes, to use
for serialization.
- _knownWriters - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
- _list(int) - Method in class com.fasterxml.jackson.jr.ob.api.CollectionBuilder.Default
-
Overridable factory method for constructing underlying List.
- _list() - Method in class com.fasterxml.jackson.jr.stree.JacksonJrsTreeCodec
-
- _longCtor - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _map - Variable in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _map() - Method in class com.fasterxml.jackson.jr.stree.JacksonJrsTreeCodec
-
- _mapBuilder - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Handler that takes care of constructing
Map
s as needed
- _mapBuilder(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- _mapBuilder - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _mapType - Variable in class com.fasterxml.jackson.jr.ob.api.MapBuilder
-
Optional
Map
implementation class, used when specific
implementation is desired.
- _mapType - Variable in class com.fasterxml.jackson.jr.ob.impl.MapReader
-
- _mode - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Mode: kind of values we are iterating over
- _nextToken - Variable in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
Sometimes parser needs to buffer a single look-ahead token; if so,
it'll be stored here.
- _nodeCursor - Variable in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
Traversal context within tree
- _noTreeCodec(String) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _noTypeReference() - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _objectCodec - Variable in class com.fasterxml.jackson.jr.stree.JacksonJrsTreeCodec
-
- _objectCodec - Variable in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
Optional codec, to allow chaining.
- _open - Variable in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _parent - Variable in class com.fasterxml.jackson.jr.ob.comp.ArrayComposer
-
- _parent - Variable in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- _parent - Variable in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _parent - Variable in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- _parser - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Parser used by this reader instance.
- _parser(Object) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _parser - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Underlying parser used for reading content to bind.
- _path - Variable in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
Path through which problem that triggering throwing of
this exception was reached.
- _prettyPrinter - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
- _prettyPrinter - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _primary - Variable in class com.fasterxml.jackson.jr.ob.api.ReaderWriterModifier.Pair
-
- _primary - Variable in class com.fasterxml.jackson.jr.ob.api.ReaderWriterProvider.Pair
-
- _properties - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanWriter
-
- _properties - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
- _propsByName - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _rawType() - Method in class com.fasterxml.jackson.jr.ob.impl.BeanPropertyReader
-
- _readBinary(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _readContext - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
- _reader - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Blueprint instance of the reader to use for reading JSON as simple
Objects.
- _reader - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _reader - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Context for deserialization, needed to pass through to deserializer
- _readerForOperation(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _readerLocator - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Object that is used to find value readers dynamically.
- _readerLock - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
Object used for mutex during construction of a Bean deserializer: necessary
to avoid race conditions during handling of cyclic dependencies.
- _readerModifier - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
Provider for reader customizer, if any; may be null.
- _readerProvider - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
Provider for custom readers, if any; may be null.
- _readIntArray(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _referencedType - Variable in class com.fasterxml.jackson.jr.type.RecursiveType
-
- _reportProblem(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _reportProblem(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.MapReader
-
- _resolveBeanDef(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
- _resolveBeanDef(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
- _resolveBeanForDeser(Class<?>, POJODefinition) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
- _resolveBeanForSer(Class<?>, POJODefinition) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
- _result - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _resync() - Method in class com.fasterxml.jackson.jr.ob.ValueIterator
-
- _safeFinish() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
Helper method used to "peel away" bogus exception declaration
- _secondary - Variable in class com.fasterxml.jackson.jr.ob.api.ReaderWriterModifier.Pair
-
- _secondary - Variable in class com.fasterxml.jackson.jr.ob.api.ReaderWriterProvider.Pair
-
- _seqContext - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Context to resynchronize to, in case an exception is encountered
but caller wants to try to read more elements.
- _start() - Method in class com.fasterxml.jackson.jr.ob.comp.ArrayComposer
-
- _start() - Method in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- _start() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _start() - Method in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _start() - Method in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- _start() - Method in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _startArray(P, JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _startCollection(P) - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _startContainer - Variable in class com.fasterxml.jackson.jr.stree.util.JrsTreeTraversingParser
-
Flag needed to handle recursion into contents of child
Array/Object nodes.
- _startMap(P) - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _startObject(P, JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _state - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
State of the iterator
- _streamFactory - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _stringCtor - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _stringWriter - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _super - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _this() - Method in class com.fasterxml.jackson.jr.ob.comp.SequenceComposer
-
- _throw(Exception) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _throwNoSuchElement() - Method in class com.fasterxml.jackson.jr.ob.ValueIterator
-
- _timezone - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _tokenDesc(JsonParser) - Static method in class com.fasterxml.jackson.jr.ob.api.ValueReader
-
Helper method for getting description of the token parser currently points to,
for use in descriptions and exception messages.
- _tokenDesc(JsonParser, JsonToken) - Static method in class com.fasterxml.jackson.jr.ob.api.ValueReader
-
Helper method for getting description of given token
for use in descriptions and exception messages.
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Optional handler for
TreeNode
values: if defined, we can
read and write
TreeNode
instances that codec supports.
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _treeCodec - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
If "Tree" values are read, codec we need to use for binding
- _type - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
- _type - Variable in class com.fasterxml.jackson.jr.ob.ValueIterator
-
Type to bind individual elements to.
- _typeId - Variable in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _typeResolver - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueReaderLocator
-
For generic containers (Collections, Maps, arrays), we may need
this guy.
- _value - Variable in class com.fasterxml.jackson.jr.stree.JrsEmbeddedObject
-
- _value - Variable in class com.fasterxml.jackson.jr.stree.JrsString
-
- _valueReader - Variable in class com.fasterxml.jackson.jr.ob.impl.ArrayReader
-
- _valueReader - Variable in class com.fasterxml.jackson.jr.ob.impl.CollectionReader
-
- _valueReader - Variable in class com.fasterxml.jackson.jr.ob.impl.MapReader
-
- _valueReaderLocator - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
- _valueType - Variable in class com.fasterxml.jackson.jr.ob.api.ValueReader
-
Type of values this reader will read
- _valueType - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanWriter
-
- _valueWriterLocator - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
- _with(CollectionBuilder, MapBuilder) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Overridable method that all mutant factories call if a new instance
is to be constructed
- _with(int) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Internal mutant factory method used for constructing
- _with(int, JsonFactory, TreeCodec, JSONReader, JSONWriter, PrettyPrinter) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _writeAndClose(Object, JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _writeContext - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
- _writeNullValues - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _writer - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Blueprint instance of the writer to use for writing JSON given
simple Objects.
- _writer - Variable in class com.fasterxml.jackson.jr.ob.JSON.Builder
-
- _writerForOperation(JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _writerLocator - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Object that is used to dynamically find Bean (and custom type) value writers
- _writerModifier - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
Provider for reader customizer, if any; may be null.
- _writerProvider - Variable in class com.fasterxml.jackson.jr.ob.impl.ValueWriterLocator
-
Provider for custom writers, if any; may be null.
- _writeValue(Object, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-