Uses of Class
com.fasterxml.jackson.core.base.ParserMinimalBase
Packages that use ParserMinimalBase
Package
Description
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.
Non-blocking ("async") JSON parser implementation.
-
Uses of ParserMinimalBase in com.fasterxml.jackson.core.base
Subclasses of ParserMinimalBase in com.fasterxml.jackson.core.baseModifier and TypeClassDescriptionclass
Intermediate base class used by all JacksonJsonParser
implementations. -
Uses of ParserMinimalBase in com.fasterxml.jackson.core.json
Subclasses of ParserMinimalBase in com.fasterxml.jackson.core.jsonModifier and TypeClassDescriptionclass
This is a concrete implementation ofJsonParser
, which is based on aReader
to handle low-level character conversion tasks.class
This is a concrete implementation ofJsonParser
, which is based on aDataInput
as the input source.class
This is a concrete implementation ofJsonParser
, which is based on aInputStream
as the input source. -
Uses of ParserMinimalBase in com.fasterxml.jackson.core.json.async
Subclasses of ParserMinimalBase in com.fasterxml.jackson.core.json.asyncModifier and TypeClassDescriptionclass
Non-blocking parser implementation for JSON content that takes its input viaByteBuffer
instance(s) passed.class
Non-blocking parser implementation for JSON content that takes its input viabyte[]
passed.class
Intermediate base class for non-blocking JSON parsers.class
Non-blocking parser base implementation for JSON content.