Serialized Form
|
Package com.fasterxml.jackson.core |
serialVersionUID: 1L
readResolve
protected Object readResolve()
- Method used to "demote" deserialized instances back to
canonical ones
_name
String _name
- Symbolic name of variant; used for diagnostics/debugging.
Note that this is the only non-transient field; used when reading
back from serialized state
serialVersionUID: 1L
readResolve
protected Object readResolve()
- Method that we need to override to actually make restoration go
through constructors etc.
Also: must be overridden by sub-classes as well.
_objectCodec
ObjectCodec _objectCodec
- Object that implements conversion functionality between
Java objects and JSON content. For base JsonFactory implementation
usually not set by default, but can be explicitly set.
Sub-classes (like @link org.codehaus.jackson.map.MappingJsonFactory}
usually provide an implementation.
_factoryFeatures
int _factoryFeatures
- Currently enabled factory features.
_parserFeatures
int _parserFeatures
- Currently enabled parser features.
_generatorFeatures
int _generatorFeatures
- Currently enabled generator features.
_characterEscapes
CharacterEscapes _characterEscapes
- Definition of custom character escapes to use for generators created
by this factory, if any. If null, standard data format specific
escapes are used.
_inputDecorator
InputDecorator _inputDecorator
- Optional helper object that may decorate input sources, to do
additional processing on input during parsing.
_outputDecorator
OutputDecorator _outputDecorator
- Optional helper object that may decorate output object, to do
additional processing on output during content generation.
_rootValueSeparator
SerializableString _rootValueSeparator
- Separator used between root-level values, if any; null indicates
"do not add separator".
Default separator is a single space character.
- Since:
- 2.1
serialVersionUID: 123L
_processor
JsonGenerator _processor
serialVersionUID: 1L
_totalBytes
long _totalBytes
_totalChars
long _totalChars
_lineNr
int _lineNr
_columnNr
int _columnNr
serialVersionUID: 2L
_processor
JsonParser _processor
serialVersionUID: 123L
_location
JsonLocation _location
serialVersionUID: 1L
_majorVersion
int _majorVersion
_minorVersion
int _minorVersion
_patchLevel
int _patchLevel
_groupId
String _groupId
_artifactId
String _artifactId
_snapshotInfo
String _snapshotInfo
- Additional information for snapshot versions; null for non-snapshot
(release) versions.
|
Package com.fasterxml.jackson.core.io |
serialVersionUID: 1L
readObject
private void readObject(ObjectInputStream in)
throws IOException
- Throws:
IOException
writeObject
private void writeObject(ObjectOutputStream out)
throws IOException
- Throws:
IOException
readResolve
protected Object readResolve()
_value
String _value
_quotedUTF8Ref
byte[] _quotedUTF8Ref
_unquotedUTF8Ref
byte[] _unquotedUTF8Ref
_quotedChars
char[] _quotedChars
|
Package com.fasterxml.jackson.core.util |
serialVersionUID: 1L
indents
char[] indents
charsPerLevel
int charsPerLevel
eol
String eol
serialVersionUID: 1L
_arrayIndenter
DefaultPrettyPrinter.Indenter _arrayIndenter
- By default, let's use only spaces to separate array values.
_objectIndenter
DefaultPrettyPrinter.Indenter _objectIndenter
- By default, let's use linefeed-adding indenter for separate
object entries. We'll further configure indenter to use
system-specific linefeeds, and 2 spaces per level (as opposed to,
say, single tabs)
_rootSeparator
SerializableString _rootSeparator
- String printed between root-level values, if any.
_spacesInObjectEntries
boolean _spacesInObjectEntries
- By default we will add spaces around colons used to
separate object fields and values.
If disabled, will not use spaces around colon.
lock
Object lock
- As minor optimization let's try to avoid "flush storms",
cases where multiple threads might try to concurrently
flush the map.
serialVersionUID: 1L
_rootValueSeparator
String _rootValueSeparator
Copyright © 2008-2016 FasterXML. All Rights Reserved.