Uses of Class
com.fasterxml.jackson.core.base.ParserMinimalBase
-
Packages that use ParserMinimalBase Package Description 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.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.core.json.async Non-blocking ("async") JSON parser implementation. -
-
Uses of ParserMinimalBase in com.fasterxml.jackson.core.base
Subclasses of ParserMinimalBase in com.fasterxml.jackson.core.base Modifier and Type Class Description class
ParserBase
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.json Modifier and Type Class Description class
ReaderBasedJsonParser
This is a concrete implementation ofJsonParser
, which is based on aReader
to handle low-level character conversion tasks.class
UTF8DataInputJsonParser
This is a concrete implementation ofJsonParser
, which is based on aDataInput
as the input source.class
UTF8StreamJsonParser
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.async Modifier and Type Class Description class
NonBlockingJsonParser
Non-blocking parser implementation for JSON content.class
NonBlockingJsonParserBase
Intermediate base class for non-blocking JSON parsers.
-