Class PropertyBuilder
java.lang.Object
com.fasterxml.jackson.databind.ser.PropertyBuilder
Helper class for
BeanSerializerFactory that is used to
construct BeanPropertyWriter instances. Can be sub-classed
to change behavior.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AnnotationIntrospectorprotected final BeanDescriptionprotected final SerializationConfigprotected ObjectIf a property has serialization inclusion value ofJsonInclude.Include.NON_DEFAULT, we may need to know the default value of the bean, to know if property value equals default one.protected final com.fasterxml.jackson.annotation.JsonInclude.ValueDefault inclusion mode for properties of the POJO for which properties are collected; possibly overridden on per-property basis.protected final booleanMarker flag used to indicate that "real" default values are to be used for properties, as per per-type value inclusion of typeNON_DEFAULT -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected BeanPropertyWriter_constructPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews) Overridable factory method for actual construction ofBeanPropertyWriter; often needed if subclassingbuildWriter(SerializerProvider, BeanPropertyDefinition, JavaType, JsonSerializer, TypeSerializer, TypeSerializer, AnnotatedMember, boolean)method.protected Object_throwWrapped(Exception e, String propName, Object defaultBean) protected BeanPropertyWriterbuildWriter(SerializerProvider prov, BeanPropertyDefinition propDef, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping) protected JavaTypefindSerializationType(Annotated a, boolean useStaticTyping, JavaType declaredType) Method that will try to determine statically defined type of property being serialized, based on annotations (for overrides), and alternatively declared type (if static typing for serialization is enabled).protected Objectprotected ObjectgetDefaultValue(JavaType type) Deprecated.Since 2.9protected ObjectgetPropertyDefaultValue(String name, AnnotatedMember member, JavaType type) Deprecated.Since 2.9 since this will not allow determining difference between "no default instance" case and default being `null`.
-
Field Details
-
_config
-
_beanDesc
-
_annotationIntrospector
-
_defaultBean
If a property has serialization inclusion value ofJsonInclude.Include.NON_DEFAULT, we may need to know the default value of the bean, to know if property value equals default one.NOTE: only used if enclosing class defines NON_DEFAULT, but NOT if it is the global default OR per-property override.
-
_defaultInclusion
protected final com.fasterxml.jackson.annotation.JsonInclude.Value _defaultInclusionDefault inclusion mode for properties of the POJO for which properties are collected; possibly overridden on per-property basis. Combines global inclusion defaults and per-type (annotation and type-override) inclusion overrides. -
_useRealPropertyDefaults
protected final boolean _useRealPropertyDefaultsMarker flag used to indicate that "real" default values are to be used for properties, as per per-type value inclusion of typeNON_DEFAULT- Since:
- 2.8
-
-
Constructor Details
-
PropertyBuilder
-
-
Method Details
-
getClassAnnotations
-
buildWriter
protected BeanPropertyWriter buildWriter(SerializerProvider prov, BeanPropertyDefinition propDef, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, TypeSerializer contentTypeSer, AnnotatedMember am, boolean defaultUseStaticTyping) throws JsonMappingException - Parameters:
contentTypeSer- Optional explicit type information serializer to use for contained values (only used for properties that are of container type)- Throws:
JsonMappingException
-
_constructPropertyWriter
protected BeanPropertyWriter _constructPropertyWriter(BeanPropertyDefinition propDef, AnnotatedMember member, Annotations contextAnnotations, JavaType declaredType, JsonSerializer<?> ser, TypeSerializer typeSer, JavaType serType, boolean suppressNulls, Object suppressableValue, Class<?>[] includeInViews) throws JsonMappingException Overridable factory method for actual construction ofBeanPropertyWriter; often needed if subclassingbuildWriter(SerializerProvider, BeanPropertyDefinition, JavaType, JsonSerializer, TypeSerializer, TypeSerializer, AnnotatedMember, boolean)method.- Throws:
JsonMappingException- Since:
- 2.12
-
findSerializationType
protected JavaType findSerializationType(Annotated a, boolean useStaticTyping, JavaType declaredType) throws JsonMappingException Method that will try to determine statically defined type of property being serialized, based on annotations (for overrides), and alternatively declared type (if static typing for serialization is enabled). If neither can be used (no annotations, dynamic typing), returns null.- Throws:
JsonMappingException
-
getDefaultBean
-
getPropertyDefaultValue
@Deprecated protected Object getPropertyDefaultValue(String name, AnnotatedMember member, JavaType type) Deprecated.Since 2.9 since this will not allow determining difference between "no default instance" case and default being `null`.Accessor used to find out "default value" for given property, to use for comparing values to serialize, to determine whether to exclude value from serialization with inclusion type ofJsonInclude.Include.NON_DEFAULT. This method is called when we specifically want to know default value within context of a POJO, when annotation is within containing class, and not for property or defined as global baseline.Note that returning of pseudo-type
JsonInclude.Include.NON_EMPTYrequires special handling.- Since:
- 2.7
-
getDefaultValue
Deprecated.Since 2.9 -
_throwWrapped
-