Uses of Class
com.fasterxml.jackson.core.util.ByteArrayBuilder

Packages that use ByteArrayBuilder
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   
 

Uses of ByteArrayBuilder in com.fasterxml.jackson.core
 

Methods in com.fasterxml.jackson.core with parameters of type ByteArrayBuilder
 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.
 

Uses of ByteArrayBuilder in com.fasterxml.jackson.core.base
 

Fields in com.fasterxml.jackson.core.base declared as ByteArrayBuilder
protected  ByteArrayBuilder ParserBase._byteArrayBuilder
          ByteArrayBuilder is needed if 'getBinaryValue' is called.
 

Methods in com.fasterxml.jackson.core.base that return ByteArrayBuilder
 ByteArrayBuilder ParserBase._getByteArrayBuilder()
           
 

Methods in com.fasterxml.jackson.core.base with parameters of type ByteArrayBuilder
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.
 

Uses of ByteArrayBuilder in com.fasterxml.jackson.core.io
 

Fields in com.fasterxml.jackson.core.io declared as ByteArrayBuilder
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.