Uses of Interface
com.fasterxml.jackson.core.format.InputAccessor
-
Packages that use InputAccessor Package Description com.fasterxml.jackson.core Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonGenerator) instances.com.fasterxml.jackson.core.format Package that contains interfaces needed for dynamic, pluggable format (auto)detection; as well as basic utility classes for simple format detection functionality.com.fasterxml.jackson.core.json JSON-specific parser and generator implementation classes that Jackson defines and uses.com.fasterxml.jackson.databind Basic data binding (mapping) functionality that allows for reading JSON content into Java Objects (POJOs) and JSON Trees (JsonNode), as well as writing Java Objects and trees as JSON.com.fasterxml.jackson.databind.deser Contains implementation classes of deserialization part of data binding. -
-
Uses of InputAccessor in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core with parameters of type InputAccessor Modifier and Type Method Description MatchStrengthJsonFactory. hasFormat(InputAccessor acc)protected MatchStrengthJsonFactory. hasJSONFormat(InputAccessor acc) -
Uses of InputAccessor in com.fasterxml.jackson.core.format
Classes in com.fasterxml.jackson.core.format that implement InputAccessor Modifier and Type Class Description static classInputAccessor.StdBasic implementation that reads data from givenInputStreamand buffers it as necessary. -
Uses of InputAccessor in com.fasterxml.jackson.core.json
Methods in com.fasterxml.jackson.core.json with parameters of type InputAccessor Modifier and Type Method Description static MatchStrengthByteSourceJsonBootstrapper. hasJSONFormat(InputAccessor acc)Current implementation is not as thorough as other functionality (ByteSourceJsonBootstrapper); supports UTF-8, for example. -
Uses of InputAccessor in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind with parameters of type InputAccessor Modifier and Type Method Description MatchStrengthMappingJsonFactory. hasFormat(InputAccessor acc)Sub-classes need to override this method -
Uses of InputAccessor in com.fasterxml.jackson.databind.deser
Classes in com.fasterxml.jackson.databind.deser that implement InputAccessor Modifier and Type Class Description protected static classDataFormatReaders.AccessorForReaderWe need sub-class here as well, to be able to access efficiently.
-