com.fasterxml.jackson.core.package-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redisson-all Show documentation
Show all versions of redisson-all Show documentation
Easy Redis Java client and Real-Time Data Platform. Valkey compatible. Sync/Async/RxJava3/Reactive API. Client side caching. Over 50 Redis based Java objects and services: JCache API, Apache Tomcat, Hibernate, Spring, Set, Multimap, SortedSet, Map, List, Queue, Deque, Semaphore, Lock, AtomicLong, Map Reduce, Bloom filter, Scheduler, RPC
/**
* Main public API classes of the core streaming JSON
* processor: most importantly {@link com.fasterxml.jackson.core.JsonFactory}
* used for constructing
* JSON parser ({@link com.fasterxml.jackson.core.JsonParser})
* and generator
* ({@link com.fasterxml.jackson.core.JsonGenerator})
* instances.
*
* Public API of the higher-level mapping interfaces ("Mapping API")
* is found from the "jackson-databind" bundle, except for following
* base interfaces that are defined here:
*
*- {@link com.fasterxml.jackson.core.TreeNode} is included
*within Streaming API to support integration of the Tree Model
*(which is based on
JsonNode
) with the basic
*parsers and generators (if and only if using mapping-supporting factory: which
*is part of Mapping API, not core)
*
*- {@link com.fasterxml.jackson.core.ObjectCodec} is included so that
* reference to the object capable of serializing/deserializing
* Objects to/from JSON (usually,
com.fasterxml.jackson.databind.ObjectMapper
)
* can be exposed, without adding direct dependency to implementation.
*
*
*/
package com.fasterxml.jackson.core;
© 2015 - 2024 Weber Informatics LLC | Privacy Policy