Uses of Class
tools.jackson.core.ErrorReportConfiguration
Packages that use ErrorReportConfiguration
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).
-
Uses of ErrorReportConfiguration in tools.jackson.core
Fields in tools.jackson.core declared as ErrorReportConfigurationModifier and TypeFieldDescriptionprotected final ErrorReportConfigurationTokenStreamFactory._errorReportConfigurationActive ErrorReportConfiguration to use.protected ErrorReportConfigurationTSFBuilder._errorReportConfigurationErrorReportConfigurationto use.Methods in tools.jackson.core that return ErrorReportConfigurationModifier and TypeMethodDescriptionErrorReportConfiguration.Builder.build()static ErrorReportConfigurationErrorReportConfiguration.defaults()TokenStreamFactory.errorReportConfiguration()Methods in tools.jackson.core with parameters of type ErrorReportConfigurationModifier and TypeMethodDescriptionTSFBuilder.errorReportConfiguration(ErrorReportConfiguration errorReportConfiguration) Sets the configuration for error tokens.static voidErrorReportConfiguration.overrideDefaultErrorReportConfiguration(ErrorReportConfiguration errorReportConfiguration) Override the default ErrorReportConfiguration.Constructors in tools.jackson.core with parameters of type ErrorReportConfigurationModifierConstructorDescriptionprotectedTokenStreamFactory(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatReadFeatures, int formatWriteFeatures) Default constructor used to create factory instances.protectedTSFBuilder(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatReadF, int formatWriteF) protectedTSFBuilder(RecyclerPool<BufferRecycler> brp, StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int factoryFeatures, int streamReadFeatures, int streamWriteFeatures, int formatReadFeatures, int formatWriteFeatures) -
Uses of ErrorReportConfiguration in tools.jackson.core.base
Constructors in tools.jackson.core.base with parameters of type ErrorReportConfigurationModifierConstructorDescriptionprotectedBinaryTSFactory(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatPF, int formatGF) protectedDecorableTSFactory(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatPF, int formatGF) protectedDecorableTSFBuilder(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatPF, int formatGF) protectedTextualTSFactory(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, int formatPF, int formatGF) -
Uses of ErrorReportConfiguration in tools.jackson.core.io
Fields in tools.jackson.core.io declared as ErrorReportConfigurationModifier and TypeFieldDescriptionprotected final ErrorReportConfigurationIOContext._errorReportConfigurationMethods in tools.jackson.core.io that return ErrorReportConfigurationMethods in tools.jackson.core.io with parameters of type ErrorReportConfigurationModifier and TypeMethodDescriptionstatic ContentReferenceContentReference.construct(boolean isContentTextual, Object rawContent, int offset, int length, ErrorReportConfiguration errorReportConfiguration) static ContentReferenceContentReference.construct(boolean isContentTextual, Object rawContent, ErrorReportConfiguration errorReportConfiguration) Constructors in tools.jackson.core.io with parameters of type ErrorReportConfigurationModifierConstructorDescriptionprotectedContentReference(boolean isContentTextual, Object rawContent, int offset, int length, ErrorReportConfiguration errorReportConfiguration) protectedContentReference(boolean isContentTextual, Object rawContent, ErrorReportConfiguration errorReportConfiguration) IOContext(StreamReadConstraints src, StreamWriteConstraints swc, ErrorReportConfiguration erc, BufferRecycler br, ContentReference contentRef, boolean managedResource, JsonEncoding enc) Main constructor to use.