Package | Description |
---|---|
com.fasterxml.jackson.core |
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser )
and generator
(JsonGenerator )
instances. |
com.fasterxml.jackson.core.base |
Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
|
com.fasterxml.jackson.core.io |
Modifier and Type | Method and Description |
---|---|
void |
Base64Variant.decode(String str,
ByteArrayBuilder builder)
Convenience method for decoding contents of a Base64-encoded String,
using this variant's settings
and appending decoded binary data using provided
ByteArrayBuilder . |
Modifier and Type | Field and Description |
---|---|
protected ByteArrayBuilder |
ParserBase._byteArrayBuilder
ByteArrayBuilder is needed if 'getBinaryValue' is called.
|
Modifier and Type | Method and Description |
---|---|
ByteArrayBuilder |
ParserBase._getByteArrayBuilder() |
Modifier and Type | Method and Description |
---|---|
protected void |
ParserMinimalBase._decodeBase64(String str,
ByteArrayBuilder builder,
Base64Variant b64variant)
Helper method that can be used for base64 decoding in cases where
encoded content has already been read as a String.
|
Modifier and Type | Field and Description |
---|---|
protected ByteArrayBuilder |
JsonStringEncoder._bytes
Lazily-constructed builder used for UTF-8 encoding of text values
(quoted and unquoted)
|
Copyright © 2008-2016 FasterXML. All Rights Reserved.