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/ser/PropertyFilter.java

    package com.fasterxml.jackson.databind.ser;
    
    import com.fasterxml.jackson.core.JsonGenerator;
    import com.fasterxml.jackson.databind.JsonMappingException;
    import com.fasterxml.jackson.databind.SerializerProvider;
    import com.fasterxml.jackson.databind.jsonFormatVisitors.JsonObjectFormatVisitor;
    import com.fasterxml.jackson.databind.node.ObjectNode;
    
    /**
     * Interface that defines API for filter objects use (as configured
     * using {@link com.fasterxml.jackson.annotation.JsonFilter})
     * for filtering bean properties to serialize.
     *<p>
     * Note that this is the replacement for <code>BeanPropertyFilter</code>,
     * which is replaced because it was too closely bound to Bean properties
     * and would not work with {@link java.util.Map}s or "any getters".
     *<p>
     * Note that since this is an interface, it is
     * strongly recommended that custom implementations extend
     * {@link com.fasterxml.jackson.databind.ser.impl.SimpleBeanPropertyFilter},
     * to avoid backwards compatibility issues in case interface needs to change.
     * 
     * @since 2.3
     */
    public interface PropertyFilter
    {
        /**
         * Method called by {@link BeanSerializer} to let the filter decide what to do with
         * given bean property value:
         * the usual choices are to either filter out (i.e.
         * do nothing) or write using given {@link PropertyWriter}, although filters
         * can choose other to do something different altogether.
         *<p>
         * Typical implementation is something like:
         *<pre>
         * if (include(writer)) {
         *      writer.serializeAsField(pojo, gen, prov);
         * }
         *</pre>
         * 
         * @param pojo Object that contains property value to serialize
         * @param gen Generator use for serializing value
         * @param prov Provider that can be used for accessing dynamic aspects of serialization
         *    processing
         * @param writer Object called to do actual serialization of the field, if not filtered out
         */
        public void serializeAsField(Object pojo, JsonGenerator gen, SerializerProvider prov,
                PropertyWriter writer)
            throws Exception;
    
        /**
         * Method called by container to let the filter decide what to do with given element
         * value: 
         * the usual choices are to either filter out (i.e.
         * do nothing) or write using given {@link PropertyWriter}, although filters
         * can choose other to do something different altogether.
         *<p>
         * Typical implementation is something like:
         *<pre>
         * if (include(writer)) {
         *      writer.serializeAsElement(pojo, gen, prov);
         * }
         *</pre>
         * 
         * @param elementValue Element value being serializerd
         * @param gen Generator use for serializing value
         * @param prov Provider that can be used for accessing dynamic aspects of serialization
         *    processing
         * @param writer Object called to do actual serialization of the field, if not filtered out
         */
        public void serializeAsElement(Object elementValue, JsonGenerator gen, SerializerProvider prov,
                PropertyWriter writer)
            throws Exception;
        
        /**
         * Method called by {@link BeanSerializer} to let the filter determine whether, and in what
         * form the given property exist within the parent, or root, schema. Filters can omit
         * adding the property to the node, or choose the form of the schema value for the property.
         *<p>
         * Typical implementation is something like:
         *<pre>
         * if (include(writer)) {
         *      writer.depositSchemaProperty(propertiesNode, provider);
         * }
         *</pre>
         * 
         * @param writer Bean property writer to use to create schema value
         * @param propertiesNode Node which the given property would exist within
         * @param provider Provider that can be used for accessing dynamic aspects of serialization
         * 	processing
         * 
         * @deprecated Since 2.3: new code should use the alternative <code>depositSchemaProperty</code>
         *   method
         */
        @Deprecated
        public void depositSchemaProperty(PropertyWriter writer, ObjectNode propertiesNode,
                SerializerProvider provider)
            throws JsonMappingException;
        
        /**
         * Method called by {@link BeanSerializer} to let the filter determine whether, and in what
         * form the given property exist within the parent, or root, schema. Filters can omit
         * adding the property to the node, or choose the form of the schema value for the property
         *<p>
         * Typical implementation is something like:
         *<pre>
         * if (include(writer)) {
         *      writer.depositSchemaProperty(objectVisitor, provider);
         * }
         *</pre>
         * 
         * @param writer Bean property serializer to use to create schema value
         * @param objectVisitor JsonObjectFormatVisitor which should be aware of 
         * the property's existence
         * @param provider Provider that can be used for accessing dynamic aspects of serialization
         * 	processing
         */
        public void depositSchemaProperty(PropertyWriter writer, JsonObjectFormatVisitor objectVisitor,
                SerializerProvider provider)
            throws JsonMappingException;
    }
    

    com/fasterxml/jackson/databind/ser/PropertyFilter.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, 81142👍, 0💬