Uses of Class
org.codehaus.jackson.Version
-
Packages that use Version Package Description org.codehaus.jackson Main public API classes of the core streaming JSON processor: most importantlyJsonFactoryused for constructing JSON parser (JsonParser) and generator (JsonParser) instances.org.codehaus.jackson.impl Parser and generator implementation classes that Jackson defines and uses.org.codehaus.jackson.jaxrs Jackson-based JAX-RS provider that can automatically serialize and deserialize resources for JSON content type (MediaType).org.codehaus.jackson.map Contains basic mapper (conversion) functionality that allows for converting between regular streaming json content and Java objects (beans or Tree Model: support for both is viaObjectMapperclass, as well as convenience methods included inJsonParserorg.codehaus.jackson.map.module Package that contains classes and interfaces to help implement custom extensionModules (which are registered usingObjectMapper.registerModule(org.codehaus.jackson.map.Module).org.codehaus.jackson.util Utility classes used by Jackson Core functionality.org.codehaus.jackson.xc Package that contains XML Compatibility functionality for Jackson, such as handlers for JAXB annotations -
-
Uses of Version in org.codehaus.jackson
Methods in org.codehaus.jackson 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()VersionJsonGenerator. version()VersionJsonParser. 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 org.codehaus.jackson with parameters of type Version Modifier and Type Method Description intVersion. compareTo(Version other) -
Uses of Version in org.codehaus.jackson.impl
Methods in org.codehaus.jackson.impl that return Version Modifier and Type Method Description VersionJsonGeneratorBase. version()VersionJsonParserBase. version() -
Uses of Version in org.codehaus.jackson.jaxrs
Methods in org.codehaus.jackson.jaxrs 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. -
Uses of Version in org.codehaus.jackson.map
Methods in org.codehaus.jackson.map that return Version Modifier and Type Method Description VersionModule.SetupContext. getMapperVersion()Method that returns version information aboutObjectMapperthat implements this context.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. -
Uses of Version in org.codehaus.jackson.map.module
Fields in org.codehaus.jackson.map.module declared as Version Modifier and Type Field Description protected VersionSimpleModule. _versionMethods in org.codehaus.jackson.map.module that return Version Modifier and Type Method Description VersionSimpleModule. version()Constructors in org.codehaus.jackson.map.module with parameters of type Version Constructor Description SimpleModule(String name, Version version) -
Uses of Version in org.codehaus.jackson.util
Methods in org.codehaus.jackson.util that return Version Modifier and Type Method Description static VersionVersionUtil. parseVersion(String versionStr)VersionJsonGeneratorDelegate. version()VersionJsonParserDelegate. version()static VersionVersionUtil. versionFor(Class<?> cls)Helper method that will try to load version information for specified class. -
Uses of Version in org.codehaus.jackson.xc
Methods in org.codehaus.jackson.xc that return Version Modifier and Type Method Description VersionJaxbAnnotationIntrospector. version()Method that will return version information stored in and read from jar that contains this class.
-