- FAIL_ON_DUPLICATE_MAP_KEYS - com.fasterxml.jackson.jr.ob.JSON.Feature
-
When encountering duplicate keys for JSON Objects, should an exception
be thrown or not? If exception is not thrown, the last instance
from input document will be used.
- FAIL_ON_UNKNOWN_BEAN_PROPERTY - com.fasterxml.jackson.jr.ob.JSON.Feature
-
When encountering a JSON Object property name for which there is no
matching Bean property, should an exception be thrown (true),
or should JSON Property value be quietly skipped (false)?
- FAIL_ON_UNKNOWN_TYPE_WRITE - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that determines what happens when we encounter a value of
unrecognized type for which we do not have standard handler: if enabled,
will throw a
JSONObjectException
, if disabled simply
calls
Object.toString()
and uses that JSON String as serialization.
- field - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition.Prop
-
- find(Class<?>) - Static method in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
- findBoundType(String) - Method in class com.fasterxml.jackson.jr.type.TypeBindings
-
- findProperty(String) - Method in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- findReader(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
Method used during deserialization to find handler for given
non-generic type.
- findSerializationType(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
The main lookup method used to find type identifier for
given raw class; including Bean types (if allowed).
- findSupertype(Class<?>) - Method in class com.fasterxml.jackson.jr.type.ResolvedType
-
Method for finding super type of this type that has specified type
erased signature.
- finish() - Method in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- finish() - Method in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- finish() - Method in class com.fasterxml.jackson.jr.ob.JSONComposer
-
Method to call to complete composition, flush any pending content,
and return instance of specified result type.
- flush() - Method in class com.fasterxml.jackson.jr.ob.comp.CollectionComposer
-
- flush() - Method in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- flush() - Method in class com.fasterxml.jackson.jr.ob.comp.ObjectComposer
-
- flush() - Method in class com.fasterxml.jackson.jr.ob.comp.SequenceComposer
-
Calls JsonGenerator.flush()
on underlying JsonGenerator
.
- FLUSH_AFTER_WRITE_VALUE - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that determines whether JsonGenerator.flush()
is
called after write()
method that takes JsonGenerator
as an argument completes (that is, does NOT affect methods
that use other destinations).
- FORCE_REFLECTION_ACCESS - com.fasterxml.jackson.jr.ob.JSON.Feature
-
- from(JsonParser, String) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- from(JsonParser, String, Object...) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- from(JsonParser, Throwable, String, Object...) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- fromBoolean(boolean) - Method in class com.fasterxml.jackson.jr.ob.impl.AnyReader
-
Method called to let implementation change a
Boolean
value that has been
read from input.
- fromEmbedded(Object) - Method in class com.fasterxml.jackson.jr.ob.impl.AnyReader
-
- fromKey(String) - Method in class com.fasterxml.jackson.jr.ob.impl.AnyReader
-
Method called to let implementation change a key of an Object field
after being parsed from input.
- fromNull() - Method in class com.fasterxml.jackson.jr.ob.impl.AnyReader
-
Method called to let implementation change a null value that has been
read from input.
- fromString(String) - Method in class com.fasterxml.jackson.jr.ob.impl.AnyReader
-
Method called to let implementation change a
String
value that has been
read from input.
- fromUnexpectedIOE(IOException) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- with(JsonFactory) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- with(PrettyPrinter) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified PrettyPrinter
,
and returning new instance (or, if there would be no change, this instance).
- with(TreeCodec) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- with(TreeCodec) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified TreeCodec
,
and returning new instance (or, if there would be no change, this instance).
- with(CollectionBuilder) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- with(CollectionBuilder) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified
CollectionBuilder
,
and returning new instance (or, if there would be no change, this instance).
- with(JSONReader) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified
JSONReader
,
and returning new instance (or, if there would be no change, this instance).
- with(JSONWriter) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified
JSONWriter
,
and returning new instance (or, if there would be no change, this instance).
- with(MapBuilder) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- with(MapBuilder) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified
MapBuilder
,
and returning new instance (or, if there would be no change, this instance).
- with(JSON.Feature...) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified features
enabled.
- with(JSON.Feature, boolean) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified feature
enabled or disabled (depending on state
), and returning
an instance with that setting; this may either be this instance (if feature
already had specified state), or a newly constructed instance.
- with(Class<?>, int) - Method in class com.fasterxml.jackson.jr.ob.impl.ClassKey
-
- withFeatures(int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- without(JSON.Feature...) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
Mutant factory for constructing an instance with specified features
disabled.
- withReader(ValueReader) - Method in class com.fasterxml.jackson.jr.ob.impl.BeanPropertyReader
-
- withUnboundVariable(String) - Method in class com.fasterxml.jackson.jr.type.TypeBindings
-
Method for creating an instance that has same bindings as this object,
plus an indicator for additional type variable that may be unbound within
this context; this is needed to resolve recursive self-references.
- wrapWithPath(Throwable, JSONObjectException.Reference) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- wrapWithPath(Throwable, Object, int) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- wrapWithPath(Throwable, Object, String) - Static method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
Method that can be called to either create a new JsonMappingException
(if underlying exception is not a JsonMappingException), or augment
given exception with given path/reference information.
- write(Object, JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- write(Object, File) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- write(Object, OutputStream) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- write(Object, Writer) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- WRITE_DATES_AS_TIMESTAMP - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that determines whether Date (and date/time) values
(and Date-based things like
Calendar
s) are to be
serialized as numeric timestamps (true),
or using a textual representation (false)
- WRITE_ENUMS_USING_INDEX - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that determines whether Enum values are written using
numeric index (true), or String representation from calling
Enum.toString()
(false).
- WRITE_NULL_PROPERTIES - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that defines what to do with
Map
entries and Java Bean
properties that have null as value: if enabled, they will be written out normally;
if disabled, such entries and properties will be ignored.
- WRITE_READONLY_BEAN_PROPERTIES - com.fasterxml.jackson.jr.ob.JSON.Feature
-
Feature that determines whether "read-only" properties of Beans
(properties that only have a getter but no matching setter) are
to be included in Bean serialization or not; if disabled,
only properties have have both setter and getter are serialized.
- writeBeanValue(BeanPropertyWriter[], Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBigDecimalField(String, BigDecimal) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBigDecimalValue(BigDecimal) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBigIntegerField(String, BigInteger) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBigIntegerValue(BigInteger) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBinaryField(String, byte[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBinaryValue(byte[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBooleanArrayField(String, boolean[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBooleanArrayValue(boolean[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBooleanField(String, boolean) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeBooleanValue(boolean) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeCollectionField(String, Collection<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeCollectionValue(Collection<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeDateField(String, Date) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeDateValue(Date) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeDoubleField(String, double) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeDoubleValue(double) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeEnumField(String, Enum<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeEnumValue(Enum<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeField(String, Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Deprecated.
- writeField(String, Object, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIntArrayField(String, int[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIntArrayValue(int[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIntField(String, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIntValue(int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIterableField(String, Iterable<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeIterableValue(Iterable<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeListField(String, List<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeListValue(List<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeLongArrayField(String, long[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeLongArrayValue(long[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeLongField(String, long) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeLongValue(long) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeMapField(String, Map<?, ?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeMapValue(Map<?, ?>) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeNullField(SerializedString) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeNullField(String) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeNullValue() - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeObjectArrayField(String, Object[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeObjectArrayValue(Object[]) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeStringField(String, String) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeStringLikeField(String, String, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeStringLikeValue(String, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeStringValue(String) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeTree(JsonGenerator, TreeNode) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- writeTreeNodeField(String, TreeNode) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeTreeNodeValue(TreeNode) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeUnknownField(String, Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeUnknownValue(Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- writeValue(JsonGenerator, Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- writeValue(Object) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _appendClassDesc(StringBuilder) - Method in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _appendPathDesc(StringBuilder) - Method in exception com.fasterxml.jackson.jr.ob.JSONObjectException
-
- _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.impl.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
-
- _close(Closeable, Exception) - 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
-
- _closeGenerator - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _closeWithError(Closeable, Exception) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _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
-
- _collectionType - Variable in class com.fasterxml.jackson.jr.ob.impl.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
-
- _current - Variable in class com.fasterxml.jackson.jr.ob.impl.CollectionBuilder.Default
-
- _current - Variable in class com.fasterxml.jackson.jr.ob.impl.MapBuilder.Default
-
- _defaultCtor - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _defaultReader(int, TreeCodec, TypeDetector) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _defaultTypeDetector(int) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _defaultWriter(int, TreeCodec, TypeDetector) - 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
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.CollectionBuilder
-
- _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.MapBuilder
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _features - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
- _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.TypeDetector
-
- _findSimple(Class<?>, boolean) - Method in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _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
-
- _illegalCall() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
- _incompleteReaders - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
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.
- _key - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
Reusable lookup key; only used by per-thread instances.
- _kind - Variable in class com.fasterxml.jackson.jr.type.ResolvedType
-
- _knownReaders - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _knownSerTypes - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
Mapping from classes to resolved type constants or indexes, to use
for serialization.
- _knownWriters - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _list(int) - Method in class com.fasterxml.jackson.jr.ob.impl.CollectionBuilder.Default
-
Overridable factory method for constructing underlying List.
- _longCtor - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _map - Variable in class com.fasterxml.jackson.jr.ob.comp.MapComposer
-
- _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
-
- _mapType - Variable in class com.fasterxml.jackson.jr.ob.impl.MapBuilder
-
Optional
Map
implementation class, used when specific
implementation is desired.
- _mapType - Variable in class com.fasterxml.jackson.jr.ob.impl.MapReader
-
- _noTreeCodec(String) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _noTypeReference() - Method in class com.fasterxml.jackson.jr.ob.impl.JSONAsObjectCodec
-
- _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(Object) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _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
-
- _prevClass - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _prevType - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _properties - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
- _propsByName - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _rawType - Variable in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _readBinary(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _reader - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Blueprint instance of the reader to use for reading JSON as simple
Objects.
- _readerForOperation(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _readerLock - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _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
-
- _resolveBeanForDeser(Class<?>) - Method in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
- _result - Variable in class com.fasterxml.jackson.jr.ob.JSONComposer
-
- _safeFinish() - Method in class com.fasterxml.jackson.jr.ob.comp.ComposerBase
-
Helper method used to "peel away" bogus exception declaration
- _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
-
- _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
-
- _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
-
- _timezone - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _tokenDesc(JsonParser) - Method in class com.fasterxml.jackson.jr.ob.impl.ValueReader
-
- _tokenDesc(JsonParser, JsonToken) - Static method in class com.fasterxml.jackson.jr.ob.impl.ValueReader
-
- _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() - Method in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
- _type - Variable in class com.fasterxml.jackson.jr.ob.impl.BeanReader
-
- _type - Variable in class com.fasterxml.jackson.jr.ob.impl.POJODefinition
-
- _typeDetector - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONReader
-
Object that is used to resolve types of values dynamically.
- _typeDetector - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Object that is used to resolve types of values dynamically.
- _typeId - Variable in class com.fasterxml.jackson.jr.ob.impl.SimpleValueReader
-
- _typeResolver - Variable in class com.fasterxml.jackson.jr.ob.impl.TypeDetector
-
For generic containers (Collections, Maps, arrays), we may need
this guy.
- _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
-
- _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
-
- _with(int, TypeDetector, TreeCodec) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
Overridable method that all mutant factories call if a new instance
is to be constructed
- _with(int, TypeDetector, TreeCodec, 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
- _writeAndClose(Object, JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _writeNullValues - Variable in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-
- _writer - Variable in class com.fasterxml.jackson.jr.ob.JSON
-
Blueprint isntance of the writer to use for writing JSON given
simple Objects.
- _writerForOperation(JsonGenerator) - Method in class com.fasterxml.jackson.jr.ob.JSON
-
- _writeValue(Object, int) - Method in class com.fasterxml.jackson.jr.ob.impl.JSONWriter
-