Uses of Class
com.fasterxml.jackson.core.Version
-
Packages that use Version 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.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.util Utility classes used by Jackson Core functionality.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.cfg Package that contains most of configuration-related classes; exception being couple of most-commonly used configuration things (like Feature enumerations) that are at the main level (com.fasterxml.jackson.databind).com.fasterxml.jackson.databind.introspect Functionality needed for Bean introspection, required for detecting accessors and mutators for Beans, as well as locating and handling method annotations.com.fasterxml.jackson.databind.json com.fasterxml.jackson.databind.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(com.fasterxml.jackson.databind.Module).com.fasterxml.jackson.databind.node Contains concreteJsonNodeimplementations Jackson uses for the Tree model.com.fasterxml.jackson.databind.util Utility classes for Mapper package.com.fasterxml.jackson.datatype.jdk8 com.fasterxml.jackson.datatype.jsr310 com.fasterxml.jackson.jakarta.rs.json Jackson-based Jakarta-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType).com.fasterxml.jackson.module.jakarta.xmlbind Package that contains support for using JAXB annotations for configuring Jackson data-binding aspects. -
-
Uses of Version in com.fasterxml.jackson.core
Methods in com.fasterxml.jackson.core that return Version Modifier and Type Method Description static VersionVersion. unknownVersion()Method returns canonical "not known" version, which is used as version in cases where actual version information is not known (instead of null).VersionJsonFactory. version()abstract VersionJsonGenerator. version()Accessor for finding out version of the bundle that provided this generator instance.abstract VersionJsonParser. version()Accessor for getting version of the core package, given a parser instance.abstract VersionObjectCodec. version()VersionVersioned. version()Method called to detect version of the component that implements this interface; returned version should never be null, but may return specific "not available" instance (seeVersionfor details).Methods in com.fasterxml.jackson.core with parameters of type Version Modifier and Type Method Description intVersion. compareTo(Version other) -
Uses of Version in com.fasterxml.jackson.core.base
Methods in com.fasterxml.jackson.core.base that return Version Modifier and Type Method Description VersionGeneratorBase. version()Implemented with standard version number detection algorithm, typically using a simple generated class, with information extracted from Maven project file during build.VersionParserBase. version() -
Uses of Version in com.fasterxml.jackson.core.json
Fields in com.fasterxml.jackson.core.json declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.core.json that return Version Modifier and Type Method Description VersionJsonGeneratorImpl. version()VersionPackageVersion. version() -
Uses of Version in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return Version Modifier and Type Method Description static VersionVersionUtil. mavenVersionFor(ClassLoader cl, String groupId, String artifactId)Deprecated.Since 2.6: functionality not used by any official Jackson component, should be moved out if anyone needs itstatic VersionVersionUtil. packageVersionFor(Class<?> cls)Deprecated.Since 2.12 simply useVersionUtil.versionFor(Class)insteadstatic VersionVersionUtil. parseVersion(String s, String groupId, String artifactId)Method used byPackageVersionclasses to decode version injected by Maven build.VersionJsonGeneratorDelegate. version()VersionJsonParserDelegate. version()VersionVersionUtil. version()Deprecated.static VersionVersionUtil. versionFor(Class<?> cls)Loads version information by introspecting a class named "PackageVersion" in the same package as the given class. -
Uses of Version in com.fasterxml.jackson.databind
Methods in com.fasterxml.jackson.databind that return Version Modifier and Type Method Description VersionModule.SetupContext. getMapperVersion()Method that returns version information aboutObjectMapperthat implements this context.abstract VersionAnnotationIntrospector. version()abstract VersionModule. version()Method that returns version of this module.VersionObjectMapper. version()Method that will return version information stored in and read from jar that contains this class.VersionObjectReader. version()Method that will return version information stored in and read from jar that contains this class.VersionObjectWriter. version()Method that will return version information stored in and read from jar that contains this class.VersionSequenceWriter. version()Method that will return version information stored in and read from jar that contains this class. -
Uses of Version in com.fasterxml.jackson.databind.cfg
Fields in com.fasterxml.jackson.databind.cfg declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.databind.cfg that return Version Modifier and Type Method Description VersionPackageVersion. version() -
Uses of Version in com.fasterxml.jackson.databind.introspect
Methods in com.fasterxml.jackson.databind.introspect that return Version Modifier and Type Method Description VersionAnnotationIntrospectorPair. version()VersionJacksonAnnotationIntrospector. version()VersionNopAnnotationIntrospector. version() -
Uses of Version in com.fasterxml.jackson.databind.json
Methods in com.fasterxml.jackson.databind.json that return Version Modifier and Type Method Description VersionJsonMapper. version() -
Uses of Version in com.fasterxml.jackson.databind.module
Fields in com.fasterxml.jackson.databind.module declared as Version Modifier and Type Field Description protected VersionSimpleModule. _versionMethods in com.fasterxml.jackson.databind.module that return Version Modifier and Type Method Description VersionSimpleModule. version()Constructors in com.fasterxml.jackson.databind.module with parameters of type Version Constructor Description SimpleModule(Version version)Convenience constructor that will use specified Version, including name fromgetArtifactId().SimpleModule(String name, Version version)Constructor to use for actual reusable modules.SimpleModule(String name, Version version, List<JsonSerializer<?>> serializers)SimpleModule(String name, Version version, Map<Class<?>,JsonDeserializer<?>> deserializers)SimpleModule(String name, Version version, Map<Class<?>,JsonDeserializer<?>> deserializers, List<JsonSerializer<?>> serializers) -
Uses of Version in com.fasterxml.jackson.databind.node
Methods in com.fasterxml.jackson.databind.node that return Version Modifier and Type Method Description VersionTreeTraversingParser. version() -
Uses of Version in com.fasterxml.jackson.databind.util
Methods in com.fasterxml.jackson.databind.util that return Version Modifier and Type Method Description VersionTokenBuffer.Parser. version()VersionTokenBuffer. version() -
Uses of Version in com.fasterxml.jackson.datatype.jdk8
Fields in com.fasterxml.jackson.datatype.jdk8 declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.datatype.jdk8 that return Version Modifier and Type Method Description VersionJdk8Module. version()VersionPackageVersion. version() -
Uses of Version in com.fasterxml.jackson.datatype.jsr310
Fields in com.fasterxml.jackson.datatype.jsr310 declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.datatype.jsr310 that return Version Modifier and Type Method Description VersionPackageVersion. version() -
Uses of Version in com.fasterxml.jackson.jakarta.rs.json
Fields in com.fasterxml.jackson.jakarta.rs.json declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.jakarta.rs.json that return Version Modifier and Type Method Description VersionJacksonJsonProvider. version()Method that will return version information stored in and read from jar that contains this class.VersionPackageVersion. version() -
Uses of Version in com.fasterxml.jackson.module.jakarta.xmlbind
Fields in com.fasterxml.jackson.module.jakarta.xmlbind declared as Version Modifier and Type Field Description static VersionPackageVersion. VERSIONMethods in com.fasterxml.jackson.module.jakarta.xmlbind that return Version Modifier and Type Method Description VersionJakartaXmlBindAnnotationIntrospector. version()Method that will return version information stored in and read from jar that contains this class.VersionJakartaXmlBindAnnotationModule. version()VersionPackageVersion. version()
-