Class BasicBeanDescription
java.lang.Object
com.fasterxml.jackson.databind.BeanDescription
com.fasterxml.jackson.databind.introspect.BasicBeanDescription
Default
BeanDescription implementation used by Jackson.
Although sub-classing is a theoretical possibility there are no known use cases for that, nor is such usage tested or supported. Separation from API is mostly to isolate some implementation details here and keep API simple.
-
Method Summary
Modifier and TypeMethodDescription_findPropertyFields(Collection<String> ignoredProperties, boolean forSerialization) Deprecated.Since 2.7.2, does not seem to be used?booleanDeprecated.Method used to locate the method of introspected class that implementsJsonAnyGetter.Method used to locate a mutator (settable field, or 2-argument set method) of introspected class that implementsJsonAnySetter.Deprecated.Method for locating all back-reference properties (setters, fields) bean hasAccessor for possible description for the bean type, used for constructing documentation.Method that will locate the no-arg constructor for this class, if it has one, and that constructor has not been marked as ignorable.Class<?>[]Method for finding out if the POJO specifies default view(s) to use for properties, considering both per-type annotations and global default settings.Method for findingConverterused for serializing instances of this class.Method for checking what is the expected format for POJO, as defined by defaults and possible annotations.findFactoryMethod(Class<?>... expArgTypes) Deprecated.Method for locating accessor (readable field, or "getter" method) that hasJsonKeyannotation, if any.Method for locating accessor (readable field, or "getter" method) that hasJsonValueannotation, if any.Deprecated.findMethod(String name, Class<?>[] paramTypes) Class<?> Method for checking if the POJO type has annotations to indicate that a builder is to be used for instantiating instances and handling data binding, instead of standard bean deserializer.Method for finding configuration for POJO Builder class.findProperty(PropertyName name) findPropertyInclusion(JsonInclude.Value defValue) Method for determining whether null properties should be written out for a Bean of introspected type.Method for findingConverterused for serializing instances of this class.Constructor<?> findSingleArgConstructor(Class<?>... argTypes) Deprecated.static BasicBeanDescriptionFactory method to use for constructing an instance to use for building deserializers.static BasicBeanDescriptionforOtherUse(MapperConfig<?> config, JavaType type, AnnotatedClass ac) Factory method to use for constructing an instance to use for purposes other than building serializers or deserializers; will only have information on class, not on properties.static BasicBeanDescriptionFactory method to use for constructing an instance to use for building serializers.Method for accessing collection of annotations the bean class has.Method for accessing low-level information about Class this item describes.Helper method that will return all non-default constructors (that is, constructors that take one or more arguments) this class has.Method similar toBeanDescription.getConstructors()except will also introspectJsonCreator.Modeand filter out ones marked as not applicable and include mode (or lack thereof) for remaining constructors.Helper method that will check all static methods of the bean class that seem like factory methods eligible to be used as Creators.Method similar toBeanDescription.getFactoryMethods()but will returnJsonCreator.Modemetadata along with qualifying factory method candidates.Accessor for getting information about Object Id expected to be used for this POJO type, if any.booleanMethod for checking whether class being described has any annotations recognized by registered annotation introspector.booleanhasProperty(PropertyName name) instantiateBean(boolean fixAccess) Method called to create a "default instance" of the bean, currently only needed for obtaining default field values which may be used for suppressing serialization of fields that have "not changed".booleanremoveProperty(String propName) Method that can be used to prune unwanted properties, during construction of serializers and deserializers.resolveType(Type jdkType) Deprecated.Methods inherited from class com.fasterxml.jackson.databind.BeanDescription
findAnySetter, findAnySetterField, findExpectedFormat, getBeanClass, getType, isNonStaticInnerClass, isRecordType
-
Method Details
-
forDeserialization
Factory method to use for constructing an instance to use for building deserializers. -
forSerialization
Factory method to use for constructing an instance to use for building serializers. -
forOtherUse
public static BasicBeanDescription forOtherUse(MapperConfig<?> config, JavaType type, AnnotatedClass ac) Factory method to use for constructing an instance to use for purposes other than building serializers or deserializers; will only have information on class, not on properties. -
removeProperty
Method that can be used to prune unwanted properties, during construction of serializers and deserializers. Use with utmost care, if at all...- Since:
- 2.1
-
addProperty
-
hasProperty
- Since:
- 2.6
-
findProperty
- Since:
- 2.6
-
getClassInfo
Description copied from class:BeanDescriptionMethod for accessing low-level information about Class this item describes.- Specified by:
getClassInfoin classBeanDescription
-
getObjectIdInfo
Description copied from class:BeanDescriptionAccessor for getting information about Object Id expected to be used for this POJO type, if any.- Specified by:
getObjectIdInfoin classBeanDescription
-
findProperties
- Specified by:
findPropertiesin classBeanDescription- Returns:
- Ordered Map with logical property name as key, and matching getter method as value.
-
findJsonKeyAccessor
Description copied from class:BeanDescriptionMethod for locating accessor (readable field, or "getter" method) that hasJsonKeyannotation, if any. If multiple ones are found, an error is reported by throwingIllegalArgumentException- Overrides:
findJsonKeyAccessorin classBeanDescription
-
findJsonValueMethod
Deprecated.- Specified by:
findJsonValueMethodin classBeanDescription
-
findJsonValueAccessor
Description copied from class:BeanDescriptionMethod for locating accessor (readable field, or "getter" method) that hasJsonValueannotation, if any. If multiple ones are found, an error is reported by throwingIllegalArgumentException- Specified by:
findJsonValueAccessorin classBeanDescription
-
getIgnoredPropertyNames
- Specified by:
getIgnoredPropertyNamesin classBeanDescription
-
hasKnownClassAnnotations
public boolean hasKnownClassAnnotations()Description copied from class:BeanDescriptionMethod for checking whether class being described has any annotations recognized by registered annotation introspector.- Specified by:
hasKnownClassAnnotationsin classBeanDescription
-
getClassAnnotations
Description copied from class:BeanDescriptionMethod for accessing collection of annotations the bean class has.- Specified by:
getClassAnnotationsin classBeanDescription
-
bindingsForBeanType
Deprecated.Description copied from class:BeanDescriptionAccessor for type bindings that may be needed to fully resolve types of member object, such as return and argument types of methods and constructors, and types of fields.- Specified by:
bindingsForBeanTypein classBeanDescription
-
resolveType
Deprecated.Description copied from class:BeanDescriptionMethod for resolving given JDK type, using this bean as the generic type resolution context.- Specified by:
resolveTypein classBeanDescription
-
findDefaultConstructor
Description copied from class:BeanDescriptionMethod that will locate the no-arg constructor for this class, if it has one, and that constructor has not been marked as ignorable.- Specified by:
findDefaultConstructorin classBeanDescription
-
findAnySetterAccessor
Description copied from class:BeanDescriptionMethod used to locate a mutator (settable field, or 2-argument set method) of introspected class that implementsJsonAnySetter. If no such mutator exists null is returned. If more than one are found, an exception is thrown. Additional checks are also made to see that method signature is acceptable: needs to take 2 arguments, first one String or Object; second any can be any type.- Specified by:
findAnySetterAccessorin classBeanDescription- Throws:
IllegalArgumentException
-
findInjectables
- Specified by:
findInjectablesin classBeanDescription
-
getConstructors
Description copied from class:BeanDescriptionHelper method that will return all non-default constructors (that is, constructors that take one or more arguments) this class has.- Specified by:
getConstructorsin classBeanDescription
-
getConstructorsWithMode
Description copied from class:BeanDescriptionMethod similar toBeanDescription.getConstructors()except will also introspectJsonCreator.Modeand filter out ones marked as not applicable and include mode (or lack thereof) for remaining constructors.Note that no other filtering (regarding visibility or other annotations) is performed
- Specified by:
getConstructorsWithModein classBeanDescription
-
instantiateBean
Description copied from class:BeanDescriptionMethod called to create a "default instance" of the bean, currently only needed for obtaining default field values which may be used for suppressing serialization of fields that have "not changed".- Specified by:
instantiateBeanin classBeanDescription- Parameters:
fixAccess- If true, method is allowed to fix access to the default constructor (to be able to call non-public constructor); if false, has to use constructor as is.- Returns:
- Instance of class represented by this descriptor, if suitable default constructor was found; null otherwise.
-
findMethod
- Specified by:
findMethodin classBeanDescription
-
findExpectedFormat
Description copied from class:BeanDescriptionMethod for checking what is the expected format for POJO, as defined by defaults and possible annotations. Note that this may be further refined by per-property annotations.- Specified by:
findExpectedFormatin classBeanDescription
-
findDefaultViews
Description copied from class:BeanDescriptionMethod for finding out if the POJO specifies default view(s) to use for properties, considering both per-type annotations and global default settings.- Specified by:
findDefaultViewsin classBeanDescription
-
findSerializationConverter
Description copied from class:BeanDescriptionMethod for findingConverterused for serializing instances of this class.- Specified by:
findSerializationConverterin classBeanDescription
-
findPropertyInclusion
Method for determining whether null properties should be written out for a Bean of introspected type. This is based on global feature (lowest priority, passed as argument) and per-class annotation (highest priority).- Specified by:
findPropertyInclusionin classBeanDescription
-
findAnyGetter
Method used to locate the method of introspected class that implementsJsonAnyGetter. If no such method exists null is returned. If more than one are found, an exception is thrown.- Specified by:
findAnyGetterin classBeanDescription- Throws:
IllegalArgumentException
-
findBackReferences
Description copied from class:BeanDescriptionMethod for locating all back-reference properties (setters, fields) bean has- Specified by:
findBackReferencesin classBeanDescription
-
findBackReferenceProperties
Deprecated.Description copied from class:BeanDescriptionMethod for locating all back-reference properties (setters, fields) bean has- Specified by:
findBackReferencePropertiesin classBeanDescription
-
getFactoryMethods
Description copied from class:BeanDescriptionHelper method that will check all static methods of the bean class that seem like factory methods eligible to be used as Creators. This requires that the static method:- Returns type compatible with bean type (same or subtype)
- Is recognized from either explicit annotation (usually
@JsonCreatorOR naming: namesvalueOf()andfromString()are recognized but only for 1-argument factory methods, and in case offromString()argument type must further be eitherStringorCharSequence.
- Specified by:
getFactoryMethodsin classBeanDescription- Returns:
- List of static methods considered as possible Factory methods
-
getFactoryMethodsWithMode
Description copied from class:BeanDescriptionMethod similar toBeanDescription.getFactoryMethods()but will returnJsonCreator.Modemetadata along with qualifying factory method candidates.- Specified by:
getFactoryMethodsWithModein classBeanDescription
-
findSingleArgConstructor
Deprecated.- Specified by:
findSingleArgConstructorin classBeanDescription
-
findFactoryMethod
Deprecated.- Specified by:
findFactoryMethodin classBeanDescription
-
findPOJOBuilder
Description copied from class:BeanDescriptionMethod for checking if the POJO type has annotations to indicate that a builder is to be used for instantiating instances and handling data binding, instead of standard bean deserializer.- Specified by:
findPOJOBuilderin classBeanDescription
-
findPOJOBuilderConfig
Description copied from class:BeanDescriptionMethod for finding configuration for POJO Builder class.- Specified by:
findPOJOBuilderConfigin classBeanDescription
-
findDeserializationConverter
Description copied from class:BeanDescriptionMethod for findingConverterused for serializing instances of this class.- Specified by:
findDeserializationConverterin classBeanDescription
-
findClassDescription
Description copied from class:BeanDescriptionAccessor for possible description for the bean type, used for constructing documentation.- Overrides:
findClassDescriptionin classBeanDescription
-
_findPropertyFields
@Deprecated public LinkedHashMap<String,AnnotatedField> _findPropertyFields(Collection<String> ignoredProperties, boolean forSerialization) Deprecated.Since 2.7.2, does not seem to be used?- Parameters:
ignoredProperties- (optional) names of properties to ignore; any fields that would be recognized as one of these properties is ignored.forSerialization- If true, will collect serializable property fields; if false, deserializable- Returns:
- Ordered Map with logical property name as key, and matching field as value.
-