Uses of Class
com.fasterxml.jackson.jr.ob.impl.CollectionBuilder
-
Packages that use CollectionBuilder Package Description com.fasterxml.jackson.jr.ob com.fasterxml.jackson.jr.ob.impl -
-
Uses of CollectionBuilder in com.fasterxml.jackson.jr.ob
Methods in com.fasterxml.jackson.jr.ob with parameters of type CollectionBuilder Modifier and Type Method Description JSON
JSON. with(CollectionBuilder b)
Mutant factory for constructing an instance with specifiedCollectionBuilder
, and returning new instance (or, if there would be no change, this instance). -
Uses of CollectionBuilder in com.fasterxml.jackson.jr.ob.impl
Subclasses of CollectionBuilder in com.fasterxml.jackson.jr.ob.impl Modifier and Type Class Description static class
CollectionBuilder.Default
DefaultCollectionBuilder
implementation, which usesArrayList
as the type ofList
to build, unless instructed otherwise.Fields in com.fasterxml.jackson.jr.ob.impl declared as CollectionBuilder Modifier and Type Field Description protected CollectionBuilder
JSONReader. _collectionBuilder
Handler that takes care of constructingMap
s as neededMethods in com.fasterxml.jackson.jr.ob.impl that return CollectionBuilder Modifier and Type Method Description protected CollectionBuilder
JSONReader. _collectionBuilder(Class<?> collType)
abstract CollectionBuilder
CollectionBuilder. add(Object value)
CollectionBuilder
CollectionBuilder.Default. add(Object value)
static CollectionBuilder
CollectionBuilder. defaultImpl()
Factory method for getting a blueprint instance of the defaultCollectionBuilder
implementation.CollectionBuilder
CollectionBuilder.Default. newBuilder(int features)
CollectionBuilder
CollectionBuilder.Default. newBuilder(Class<?> collType)
CollectionBuilder
CollectionBuilder. newBuilder()
abstract CollectionBuilder
CollectionBuilder. newBuilder(int features)
abstract CollectionBuilder
CollectionBuilder. newBuilder(Class<?> collImpl)
CollectionBuilder
CollectionBuilder.Default. start()
abstract CollectionBuilder
CollectionBuilder. start()
Methods in com.fasterxml.jackson.jr.ob.impl with parameters of type CollectionBuilder Modifier and Type Method Description protected JSONReader
JSONReader. _with(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec tc, CollectionBuilder lb, MapBuilder mb)
Overridable method that all mutant factories call if a new instance is to be constructedObject[]
AnyReader. readArrayFromArray(JSONReader r, com.fasterxml.jackson.core.JsonParser p, CollectionBuilder b)
Collection<Object>
AnyReader. readCollectionFromArray(JSONReader r, com.fasterxml.jackson.core.JsonParser p, CollectionBuilder b)
JSONReader
JSONReader. with(CollectionBuilder lb)
Constructors in com.fasterxml.jackson.jr.ob.impl with parameters of type CollectionBuilder Constructor Description JSONReader(int features, TypeDetector td, com.fasterxml.jackson.core.TreeCodec treeCodec, CollectionBuilder lb, MapBuilder mb)
Constructor used for creating the blueprint instances.
-