com.fasterxml.jackson.databind.deser

Class BeanDeserializerBuilder



  • public class BeanDeserializerBuilder
    extends Object
    Builder class used for aggregating deserialization information about a POJO, in order to build a JsonDeserializer for deserializing instances.
    • Field Detail

      • _defaultViewInclusion

        protected final boolean _defaultViewInclusion
      • _injectables

        protected List<ValueInjector> _injectables
        Value injectors for deserialization
      • _ignorableProps

        protected HashSet<String> _ignorableProps
        Set of names of properties that are recognized but are to be ignored for deserialization purposes (meaning no exception is thrown, value is just skipped).
      • _valueInstantiator

        protected ValueInstantiator _valueInstantiator
        Object that will handle value instantiation for the bean type.
      • _anySetter

        protected SettableAnyProperty _anySetter
        Fallback setter used for handling any properties that are not mapped to regular setters. If setter is not null, it will be called once for each such property.
      • _ignoreAllUnknown

        protected boolean _ignoreAllUnknown
        Flag that can be set to ignore and skip unknown properties. If set, will not throw an exception for unknown properties.
      • _buildMethod

        protected AnnotatedMethod _buildMethod
        When creating Builder-based deserializers, this indicates method to call on builder to finalize value.
      • _builderConfig

        protected JsonPOJOBuilder.Value _builderConfig
        In addition, Builder may have additional configuration
    • Method Detail

      • addOrReplaceProperty

        public void addOrReplaceProperty(SettableBeanProperty prop,
                                boolean allowOverride)
        Method for adding a new property or replacing a property.
      • addBackReferenceProperty

        public void addBackReferenceProperty(String referenceName,
                                    SettableBeanProperty prop)
        Method called to add a property that represents so-called back reference; reference that "points back" to object that has forward reference to currently built bean.
      • addIgnorable

        public void addIgnorable(String propName)
        Method that will add property name as one of properties that can be ignored if not recognized.
      • addCreatorProperty

        public void addCreatorProperty(SettableBeanProperty prop)
        Method called by deserializer factory, when a "creator property" (something that is passed via constructor- or factory method argument; instead of setter or field).

        Default implementation does not do anything; we may need to revisit this decision if these properties need to be available through accessors. For now, however, we just have to ensure that we don't try to resolve types that masked setter/field has (see [JACKSON-700] for details).

      • setIgnoreUnknownProperties

        public void setIgnoreUnknownProperties(boolean ignore)
      • setObjectIdReader

        public void setObjectIdReader(ObjectIdReader r)
      • getProperties

        public Iterator<SettableBeanProperty> getProperties()
        Method that allows accessing all properties that this builder currently contains.

        Note that properties are returned in order that properties are ordered (explictly, or by rule), which is the serialization order.

      • hasProperty

        public boolean hasProperty(String propertyName)
      • build

        public JsonDeserializer<?> build()
        Method for constructing a BeanDeserializer, given all information collected.

        NOTE: Signature of this method did unfortunately change between Jackson 2.1 and Jackson 2.2

      • buildAbstract

        public AbstractDeserializer buildAbstract()
        Alternate build method used when we must be using some form of abstract resolution, usually by using addition Type Id ("polymorphic deserialization")
        Since:
        2.0
      • buildBuilderBased

        public JsonDeserializer<?> buildBuilderBased(JavaType valueType,
                                            String expBuildMethodName)
        Method for constructing a specialized deserializer that uses additional external Builder object during data binding.

Copyright © 2012-2013 FasterXML. All Rights Reserved.