Jackson Data Binding Source Code

Jackson is "the Java JSON library" or "the best JSON parser for Java". Or simply as "JSON for Java".

  • Jackson Data Binding module allows you to converts JSON to and from POJO (Plain Old Java Object) using property accessor or using annotations.
  • Jackson Databind Source Code files are provided in the source packge (jackson-databind-2.14.0-sources.jar). You can download it at Jackson Maven Website.

    You can also browse Jackson Databind Source Code below:

    ✍: FYIcenter.com

    com/fasterxml/jackson/databind/jsontype/SubtypeResolver.java

    package com.fasterxml.jackson.databind.jsontype;
    
    import java.util.Collection;
    
    import com.fasterxml.jackson.databind.AnnotationIntrospector;
    import com.fasterxml.jackson.databind.JavaType;
    import com.fasterxml.jackson.databind.cfg.MapperConfig;
    import com.fasterxml.jackson.databind.introspect.AnnotatedClass;
    import com.fasterxml.jackson.databind.introspect.AnnotatedMember;
    
    /**
     * Helper object used for handling registration on resolving of super-types
     * to sub-types.
     */
    public abstract class SubtypeResolver
    {
        /**
         * Method called by {@code ObjectMapper.copy()} to make sure that
         * {@link SubtypeResolver} instances used by two independent mappers
         * can not cause thread-safety issues: if resolver is immutable, it
         * may return {@code this}, but if not, it should create a copy with
         * same configuration and return that instead.
         *
         * @return Either new instance with same configuration as this one (if
         *    instances are mutable), or this instance (if immutable)
         *
         * @since 2.12
         */
        public SubtypeResolver copy() {
            return this;
        }
    
        /*
        /**********************************************************
        /* Methods for registering external subtype definitions (init/config)
        /**********************************************************
         */
    
        /**
         * Method for registering specified subtypes (possibly including type
         * names); for type entries without name, non-qualified class name
         * as used as name (unless overridden by annotation).
         */
        public abstract void registerSubtypes(NamedType... types);
    
        public abstract void registerSubtypes(Class<?>... classes);
    
        /**
         * @since 2.9
         */
        public abstract void registerSubtypes(Collection<Class<?>> subtypes);
        
        /*
        /**********************************************************
        /* Subtype resolution (public API)
        /**********************************************************
         */
    
        /**
         * Method for finding out all reachable subtypes for a property specified
         * by given element (method or field),
         * such that access is by type,
         * typically needed for serialization (converting from type to type name).
         * 
         * @param baseType Effective property base type to use; may differ from
         *    actual type of property; for structured types it is content (value) type and NOT
         *    structured type.
         * 
         * @since 2.6
         */
        public Collection<NamedType> collectAndResolveSubtypesByClass(MapperConfig<?> config, 
                AnnotatedMember property, JavaType baseType) {
            // for backwards compatibility...
            return collectAndResolveSubtypes(property, config,
                    config.getAnnotationIntrospector(), baseType);
        }
    
        /**
         * Method for finding out all reachable subtypes for given type,
         * such that access is by type,
         * typically needed for serialization (converting from type to type name).
         * 
         * @param baseType Effective property base type to use; may differ from
         *    actual type of property; for structured types it is content (value) type and NOT
         *    structured type.
         * 
         * @since 2.6
         */
        public Collection<NamedType> collectAndResolveSubtypesByClass(MapperConfig<?> config,
                AnnotatedClass baseType) {
            // for backwards compatibility...
            return collectAndResolveSubtypes(baseType, config, config.getAnnotationIntrospector());
        }
    
        /**
         * Method for finding out all reachable subtypes for a property specified
         * by given element (method or field),
         * such that access is by type id,
         * typically needed for deserialization (converting from type id to type).
         * 
         * @param baseType Effective property base type to use; may differ from
         *    actual type of property; for structured types it is content (value) type and NOT
         *    structured type.
         * 
         * @since 2.6
         */
        public Collection<NamedType> collectAndResolveSubtypesByTypeId(MapperConfig<?> config, 
                AnnotatedMember property, JavaType baseType) {
            // for backwards compatibility...
            return collectAndResolveSubtypes(property, config,
                    config.getAnnotationIntrospector(), baseType);
        }
    
        /**
         * Method for finding out all reachable subtypes for given type,
         * such that access is by type id,
         * typically needed for deserialization (converting from type id to type).
         * 
         * @param baseType Effective property base type to use; may differ from
         *    actual type of property; for structured types it is content (value) type and NOT
         *    structured type.
         * 
         * @since 2.6
         */
        public Collection<NamedType> collectAndResolveSubtypesByTypeId(MapperConfig<?> config,
                AnnotatedClass baseType) {
            // for backwards compatibility...
            return collectAndResolveSubtypes(baseType, config, config.getAnnotationIntrospector());
        }
        
        /*
        /**********************************************************
        /* Deprecated methods
        /**********************************************************
         */
        
        /**
         * @deprecated Since 2.6 Use either
         *   {@link #collectAndResolveSubtypesByClass(MapperConfig, AnnotatedMember, JavaType)}
         *   or {@link #collectAndResolveSubtypesByTypeId(MapperConfig, AnnotatedMember, JavaType)}
         *   instead.
         */
        @Deprecated
        public Collection<NamedType> collectAndResolveSubtypes(AnnotatedMember property,
                MapperConfig<?> config, AnnotationIntrospector ai, JavaType baseType) {
            return collectAndResolveSubtypesByClass(config, property, baseType);
        }
    
        /**
         * @deprecated Since 2.6 Use either
         *   {@link #collectAndResolveSubtypesByClass(MapperConfig, AnnotatedClass)}
         *   or {@link #collectAndResolveSubtypesByTypeId(MapperConfig, AnnotatedClass)}
         *   instead.
         */
        @Deprecated
        public Collection<NamedType> collectAndResolveSubtypes(AnnotatedClass baseType,
                MapperConfig<?> config, AnnotationIntrospector ai) {
            return collectAndResolveSubtypesByClass(config, baseType);
        }
    }
    

    com/fasterxml/jackson/databind/jsontype/SubtypeResolver.java

     

    Or download all of them as a single archive file:

    File name: jackson-databind-2.14.0-sources.jar
    File size: 1187952 bytes
    Release date: 2022-11-05
    Download 
    

     

    Jackson Annotations Source Code

    Download and Install Jackson Binary Package

    Downloading and Reviewing jackson-*.jar

    ⇑⇑ Jackson - Java JSON library

    2022-03-29, 81123👍, 0💬