Class BasicBeanDescription
- java.lang.Object
 - 
- com.fasterxml.jackson.databind.BeanDescription
 - 
- com.fasterxml.jackson.databind.introspect.BasicBeanDescription
 
 
 
- 
public class BasicBeanDescription extends BeanDescription
DefaultBeanDescriptionimplementation 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
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.util.LinkedHashMap<java.lang.String,AnnotatedField>_findPropertyFields(java.util.Collection<java.lang.String> ignoredProperties, boolean forSerialization)Deprecated.Since 2.7.2, does not seem to be used?booleanaddProperty(BeanPropertyDefinition def)TypeBindingsbindingsForBeanType()Deprecated.AnnotatedMemberfindAnyGetter()Method used to locate the method of introspected class that implementsJsonAnyGetter.AnnotatedMemberfindAnySetterAccessor()Method used to locate a mutator (settable field, or 2-argument set method) of introspected class that implementsJsonAnySetter.java.util.Map<java.lang.String,AnnotatedMember>findBackReferenceProperties()Deprecated.java.util.List<BeanPropertyDefinition>findBackReferences()Method for locating all back-reference properties (setters, fields) bean hasjava.lang.StringfindClassDescription()Accessor for possible description for the bean type, used for constructing documentation.AnnotatedConstructorfindDefaultConstructor()Method that will locate the no-arg constructor for this class, if it has one, and that constructor has not been marked as ignorable.java.lang.Class<?>[]findDefaultViews()Method for finding out if the POJO specifies default view(s) to use for properties, considering both per-type annotations and global default settings.Converter<java.lang.Object,java.lang.Object>findDeserializationConverter()Method for findingConverterused for serializing instances of this class.JsonFormat.ValuefindExpectedFormat(JsonFormat.Value defValue)Method for checking what is the expected format for POJO, as defined by defaults and possible annotations.java.lang.reflect.MethodfindFactoryMethod(java.lang.Class<?>... expArgTypes)Deprecated.java.util.Map<java.lang.Object,AnnotatedMember>findInjectables()AnnotatedMemberfindJsonKeyAccessor()Method for locating accessor (readable field, or "getter" method) that hasJsonKeyannotation, if any.AnnotatedMemberfindJsonValueAccessor()Method for locating accessor (readable field, or "getter" method) that hasJsonValueannotation, if any.AnnotatedMethodfindJsonValueMethod()Deprecated.AnnotatedMethodfindMethod(java.lang.String name, java.lang.Class<?>[] paramTypes)java.lang.Class<?>findPOJOBuilder()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.JsonPOJOBuilder.ValuefindPOJOBuilderConfig()Method for finding configuration for POJO Builder class.java.util.List<BeanPropertyDefinition>findProperties()BeanPropertyDefinitionfindProperty(PropertyName name)JsonInclude.ValuefindPropertyInclusion(JsonInclude.Value defValue)Method for determining whether null properties should be written out for a Bean of introspected type.Converter<java.lang.Object,java.lang.Object>findSerializationConverter()Method for findingConverterused for serializing instances of this class.java.lang.reflect.Constructor<?>findSingleArgConstructor(java.lang.Class<?>... argTypes)Deprecated.static BasicBeanDescriptionforDeserialization(POJOPropertiesCollector coll)Factory 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 BasicBeanDescriptionforSerialization(POJOPropertiesCollector coll)Factory method to use for constructing an instance to use for building serializers.AnnotationsgetClassAnnotations()Method for accessing collection of annotations the bean class has.AnnotatedClassgetClassInfo()Method for accessing low-level information about Class this item describes.java.util.List<AnnotatedConstructor>getConstructors()Helper method that will return all non-default constructors (that is, constructors that take one or more arguments) this class has.java.util.List<AnnotatedAndMetadata<AnnotatedConstructor,JsonCreator.Mode>>getConstructorsWithMode()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.java.util.List<AnnotatedMethod>getFactoryMethods()Helper method that will check all static methods of the bean class that seem like factory methods eligible to be used as Creators.java.util.List<AnnotatedAndMetadata<AnnotatedMethod,JsonCreator.Mode>>getFactoryMethodsWithMode()Method similar toBeanDescription.getFactoryMethods()but will returnJsonCreator.Modemetadata along with qualifying factory method candidates.java.util.Set<java.lang.String>getIgnoredPropertyNames()ObjectIdInfogetObjectIdInfo()Accessor for getting information about Object Id expected to be used for this POJO type, if any.booleanhasKnownClassAnnotations()Method for checking whether class being described has any annotations recognized by registered annotation introspector.booleanhasProperty(PropertyName name)java.lang.ObjectinstantiateBean(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(java.lang.String propName)Method that can be used to prune unwanted properties, during construction of serializers and deserializers.JavaTyperesolveType(java.lang.reflect.Type jdkType)Deprecated.- 
Methods inherited from class com.fasterxml.jackson.databind.BeanDescription
findAnySetter, findAnySetterField, getBeanClass, getType, isNonStaticInnerClass 
 - 
 
 - 
 
- 
- 
Method Detail
- 
forDeserialization
public static BasicBeanDescription forDeserialization(POJOPropertiesCollector coll)
Factory method to use for constructing an instance to use for building deserializers. 
- 
forSerialization
public static BasicBeanDescription forSerialization(POJOPropertiesCollector coll)
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
public boolean removeProperty(java.lang.String propName)
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
public boolean addProperty(BeanPropertyDefinition def)
 
- 
hasProperty
public boolean hasProperty(PropertyName name)
- Since:
 - 2.6
 
 
- 
findProperty
public BeanPropertyDefinition findProperty(PropertyName name)
- Since:
 - 2.6
 
 
- 
getClassInfo
public AnnotatedClass getClassInfo()
Description copied from class:BeanDescriptionMethod for accessing low-level information about Class this item describes.- Specified by:
 getClassInfoin classBeanDescription
 
- 
getObjectIdInfo
public ObjectIdInfo 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
public java.util.List<BeanPropertyDefinition> findProperties()
- Specified by:
 findPropertiesin classBeanDescription- Returns:
 - Ordered Map with logical property name as key, and matching getter method as value.
 
 
- 
findJsonKeyAccessor
public AnnotatedMember 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 public AnnotatedMethod findJsonValueMethod()
Deprecated.- Specified by:
 findJsonValueMethodin classBeanDescription
 
- 
findJsonValueAccessor
public AnnotatedMember 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
public java.util.Set<java.lang.String> 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
public Annotations getClassAnnotations()
Description copied from class:BeanDescriptionMethod for accessing collection of annotations the bean class has.- Specified by:
 getClassAnnotationsin classBeanDescription
 
- 
bindingsForBeanType
@Deprecated public TypeBindings 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 public JavaType resolveType(java.lang.reflect.Type jdkType)
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
public AnnotatedConstructor 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
public AnnotatedMember findAnySetterAccessor() throws java.lang.IllegalArgumentException
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:
 java.lang.IllegalArgumentException
 
- 
findInjectables
public java.util.Map<java.lang.Object,AnnotatedMember> findInjectables()
- Specified by:
 findInjectablesin classBeanDescription
 
- 
getConstructors
public java.util.List<AnnotatedConstructor> 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
public java.util.List<AnnotatedAndMetadata<AnnotatedConstructor,JsonCreator.Mode>> 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
public java.lang.Object instantiateBean(boolean fixAccess)
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
public AnnotatedMethod findMethod(java.lang.String name, java.lang.Class<?>[] paramTypes)
- Specified by:
 findMethodin classBeanDescription
 
- 
findExpectedFormat
public JsonFormat.Value findExpectedFormat(JsonFormat.Value defValue)
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
public java.lang.Class<?>[] 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
public Converter<java.lang.Object,java.lang.Object> findSerializationConverter()
Description copied from class:BeanDescriptionMethod for findingConverterused for serializing instances of this class.- Specified by:
 findSerializationConverterin classBeanDescription
 
- 
findPropertyInclusion
public JsonInclude.Value findPropertyInclusion(JsonInclude.Value defValue)
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
public AnnotatedMember findAnyGetter() throws java.lang.IllegalArgumentException
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:
 java.lang.IllegalArgumentException
 
- 
findBackReferences
public java.util.List<BeanPropertyDefinition> findBackReferences()
Description copied from class:BeanDescriptionMethod for locating all back-reference properties (setters, fields) bean has- Specified by:
 findBackReferencesin classBeanDescription
 
- 
findBackReferenceProperties
@Deprecated public java.util.Map<java.lang.String,AnnotatedMember> findBackReferenceProperties()
Deprecated.Description copied from class:BeanDescriptionMethod for locating all back-reference properties (setters, fields) bean has- Specified by:
 findBackReferencePropertiesin classBeanDescription
 
- 
getFactoryMethods
public java.util.List<AnnotatedMethod> 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
public java.util.List<AnnotatedAndMetadata<AnnotatedMethod,JsonCreator.Mode>> 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 public java.lang.reflect.Constructor<?> findSingleArgConstructor(java.lang.Class<?>... argTypes)
Deprecated.- Specified by:
 findSingleArgConstructorin classBeanDescription
 
- 
findFactoryMethod
@Deprecated public java.lang.reflect.Method findFactoryMethod(java.lang.Class<?>... expArgTypes)
Deprecated.- Specified by:
 findFactoryMethodin classBeanDescription
 
- 
findPOJOBuilder
public java.lang.Class<?> 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
public JsonPOJOBuilder.Value findPOJOBuilderConfig()
Description copied from class:BeanDescriptionMethod for finding configuration for POJO Builder class.- Specified by:
 findPOJOBuilderConfigin classBeanDescription
 
- 
findDeserializationConverter
public Converter<java.lang.Object,java.lang.Object> findDeserializationConverter()
Description copied from class:BeanDescriptionMethod for findingConverterused for serializing instances of this class.- Specified by:
 findDeserializationConverterin classBeanDescription
 
- 
findClassDescription
public java.lang.String findClassDescription()
Description copied from class:BeanDescriptionAccessor for possible description for the bean type, used for constructing documentation.- Overrides:
 findClassDescriptionin classBeanDescription
 
- 
_findPropertyFields
@Deprecated public java.util.LinkedHashMap<java.lang.String,AnnotatedField> _findPropertyFields(java.util.Collection<java.lang.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.
 
 
 - 
 
 -