Uses of Class
tools.jackson.core.TokenStreamFactory
Packages that use TokenStreamFactory
Package
Description
Main public API classes of the core streaming JSON
processor: most importantly
JsonFactory
used for constructing
JSON parser (JsonParser)
and generator
(JsonGenerator)
instances.Base classes used by concrete Parser and Generator implementations;
contain functionality that is not specific to JSON or input
abstraction (byte vs char).
JSON-specific parser and generator implementation classes that
Jackson defines and uses.
Internal implementation classes for efficient handling of
of symbols in JSON (Object property names)
Utility classes used by Jackson Core functionality.
-
Uses of TokenStreamFactory in tools.jackson.core
Classes in tools.jackson.core with type parameters of type TokenStreamFactoryModifier and TypeClassDescriptionclassTSFBuilder<F extends TokenStreamFactory,B extends TSFBuilder<F, B>> Since factory instances are immutable, a Builder class is needed for creating configurations for differently configured factory instances.Methods in tools.jackson.core that return TokenStreamFactoryModifier and TypeMethodDescriptionabstract TokenStreamFactoryTokenStreamFactory.copy()Method similar tosnapshot(), but one that forces creation of actual new copy that does NOT share any state, even non-visible to calling code, such as symbol table reuse.abstract TokenStreamFactoryTokenStreamFactory.snapshot()Method for constructing a newTokenStreamFactorythat has the same settings as this instance, but is otherwise independent (i.e. nothing is actually shared, symbol tables are separate).ObjectReadContext.Base.tokenStreamFactory()ObjectReadContext.tokenStreamFactory()ObjectWriteContext.Base.tokenStreamFactory()ObjectWriteContext.tokenStreamFactory()Constructors in tools.jackson.core with parameters of type TokenStreamFactoryModifierConstructorDescriptionprotectedConstructor used if a snapshot is created, or possibly for sub-classing or wrapping (delegating)protectedTSFBuilder(TokenStreamFactory base) -
Uses of TokenStreamFactory in tools.jackson.core.base
Classes in tools.jackson.core.base with type parameters of type TokenStreamFactoryModifier and TypeClassDescriptionstatic classDecorableTSFactory.DecorableTSFBuilder<F extends TokenStreamFactory,T extends TSFBuilder<F, T>> Since factory instances are immutable, a Builder class is needed for creating configurations for differently configured factory instances.Subclasses of TokenStreamFactory in tools.jackson.core.baseModifier and TypeClassDescriptionclassIntermediateTokenStreamFactorysub-class used as the base for binary (non-textual) data formats.classIntermediate baseTokenStreamFactoryimplementation that offers support for streams that allow decoration of low-level input sources and output targets.classIntermediateTokenStreamFactorysub-class used as the base for textual data formats. -
Uses of TokenStreamFactory in tools.jackson.core.json
Subclasses of TokenStreamFactory in tools.jackson.core.jsonModifier and TypeClassDescriptionclassJSON-backedTokenStreamFactoryimplementation that will create token readers ("parsers") and writers ("generators") for handling JSON-encoded content.Methods in tools.jackson.core.json that return TokenStreamFactory -
Uses of TokenStreamFactory in tools.jackson.core.sym
Methods in tools.jackson.core.sym with parameters of type TokenStreamFactoryModifier and TypeMethodDescriptionstatic CharsToNameCanonicalizerCharsToNameCanonicalizer.createRoot(TokenStreamFactory owner) instance.static CharsToNameCanonicalizerCharsToNameCanonicalizer.createRoot(TokenStreamFactory owner, int seed) -
Uses of TokenStreamFactory in tools.jackson.core.util
Methods in tools.jackson.core.util with parameters of type TokenStreamFactoryModifier and TypeMethodDescriptionJsonGeneratorDecorator.decorate(TokenStreamFactory factory, JsonGenerator generator) Allow to decorateJsonGeneratorinstances returned byTokenStreamFactory.