Class BasicBeanDescription
java.lang.Object
org.codehaus.jackson.map.BeanDescription
org.codehaus.jackson.map.introspect.BasicBeanDescription
Default
BeanDescription
implementation.
Can theoretically be subclassed to customize
some aspects of property introspection.-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final AnnotationIntrospector
protected AnnotatedMethod
protected AnnotatedMethod
protected TypeBindings
We may need type bindings for the bean type.protected final AnnotatedClass
Information collected about the class introspected.protected final MapperConfig
<?> Set of properties that can be ignored during deserialization, due to being marked as ignored.protected Map
<Object, AnnotatedMember> protected AnnotatedMethod
protected final List
<BeanPropertyDefinition> Properties collected for the POJO.Fields inherited from class org.codehaus.jackson.map.BeanDescription
_type
-
Constructor Summary
ConstructorsModifierConstructorDescriptionBasicBeanDescription
(MapperConfig<?> config, JavaType type, AnnotatedClass ac) Deprecated.Since 1.9, should use factory methods insteadprotected
BasicBeanDescription
(MapperConfig<?> config, JavaType type, AnnotatedClass ac, List<BeanPropertyDefinition> properties) -
Method Summary
Modifier and TypeMethodDescription_findPropertyFields
(Collection<String> ignoredProperties, boolean forSerialization) Accessor 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.Method used to locate the method of introspected class that implementsJsonAnyGetter
.Method used to locate the method of introspected class that implementsJsonAnySetter
.Method for locating all back-reference properties (setters, fields) bean hasMethod for getting ordered list of named Creator properties.Method that will locate the no-arg constructor for this class, if it has one, and that constructor has not been marked as ignorable.findDeserializableFields
(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) findFactoryMethod
(Class<?>... expArgTypes) Method that can be called to find if introspected class declares a static "valueOf" factory method that returns an instance of introspected type, given one of acceptable types.findGetters
(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) Method for locating the getter method that is annotated withJsonValue
annotation, if any.findMethod
(String name, Class<?>[] paramTypes) findSerializableFields
(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) Method for determining whether null properties should be written out for a Bean of introspected type.findSetters
(VisibilityChecker<?> visibilityChecker) Constructor
<?> findSingleArgConstructor
(Class<?>... argTypes) Method that can be called to locate a single-arg constructor that takes specified exact type (will not accept supertype constructors)static BasicBeanDescription
Factory method to use for constructing an instance to use for building deserializers.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.static BasicBeanDescription
Factory method to use for constructing an instance to use for building serializers.Method for accessing collection of annotations the bean class has.boolean
Method for checking whether class being described has any annotations recognized by registered annotation introspector.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".protected boolean
resolveType
(Type jdkType) Method for resolving given JDK type, using this bean as the generic type resolution context.Methods inherited from class org.codehaus.jackson.map.BeanDescription
getBeanClass, getType
-
Field Details
-
_config
-
_annotationIntrospector
-
_classInfo
Information collected about the class introspected. -
_bindings
We may need type bindings for the bean type. If so, we'll construct it lazily -
_properties
Properties collected for the POJO. -
_anySetterMethod
-
_injectables
-
_ignoredPropertyNames
Set of properties that can be ignored during deserialization, due to being marked as ignored. -
_ignoredPropertyNamesForDeser
- Since:
- 1.9.4
-
_jsonValueMethod
-
_anyGetterMethod
-
-
Constructor Details
-
BasicBeanDescription
Deprecated.Since 1.9, should use factory methods instead -
BasicBeanDescription
protected BasicBeanDescription(MapperConfig<?> config, JavaType type, AnnotatedClass ac, List<BeanPropertyDefinition> properties) - Since:
- 1.9
-
-
Method Details
-
forDeserialization
Factory method to use for constructing an instance to use for building deserializers.- Since:
- 1.9
-
forSerialization
Factory method to use for constructing an instance to use for building serializers.- Since:
- 1.9
-
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.- Since:
- 1.9
-
getClassInfo
- Specified by:
getClassInfo
in classBeanDescription
- Since:
- 1.9
-
findProperties
- Specified by:
findProperties
in classBeanDescription
- Returns:
- Ordered Map with logical property name as key, and matching getter method as value.
-
findJsonValueMethod
Method for locating the getter method that is annotated withJsonValue
annotation, if any. If multiple ones are found, an error is reported by throwingIllegalArgumentException
- Specified by:
findJsonValueMethod
in classBeanDescription
-
getIgnoredPropertyNames
- Specified by:
getIgnoredPropertyNames
in classBeanDescription
-
getIgnoredPropertyNamesForDeser
-
hasKnownClassAnnotations
public boolean hasKnownClassAnnotations()Method for checking whether class being described has any annotations recognized by registered annotation introspector.- Specified by:
hasKnownClassAnnotations
in classBeanDescription
-
getClassAnnotations
Description copied from class:BeanDescription
Method for accessing collection of annotations the bean class has.- Specified by:
getClassAnnotations
in classBeanDescription
-
bindingsForBeanType
Description copied from class:BeanDescription
Accessor 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:
bindingsForBeanType
in classBeanDescription
-
resolveType
Description copied from class:BeanDescription
Method for resolving given JDK type, using this bean as the generic type resolution context.- Specified by:
resolveType
in classBeanDescription
-
findDefaultConstructor
Method 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:
findDefaultConstructor
in classBeanDescription
- Since:
- 1.9
-
findAnySetter
Method used to locate the method of introspected class that implementsJsonAnySetter
. If no such method 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:
findAnySetter
in classBeanDescription
- Throws:
IllegalArgumentException
-
findInjectables
- Specified by:
findInjectables
in classBeanDescription
-
getConstructors
-
findMethod
-
instantiateBean
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".- 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.
-
getFactoryMethods
-
findSingleArgConstructor
Method that can be called to locate a single-arg constructor that takes specified exact type (will not accept supertype constructors)- Parameters:
argTypes
- Type(s) of the argument that we are looking for
-
findFactoryMethod
Method that can be called to find if introspected class declares a static "valueOf" factory method that returns an instance of introspected type, given one of acceptable types.- Parameters:
expArgTypes
- Types that the matching single argument factory method can take: will also accept super types of these types (ie. arg just has to be assignable from expArgType)
-
isFactoryMethod
-
findCreatorPropertyNames
Method for getting ordered list of named Creator properties. Returns an empty list is none found. If multiple Creator methods are defined, order between properties from different methods is undefined; however, properties for each such Creator are ordered properly relative to each other. For the usual case of just a single Creator, named properties are thus properly ordered. -
findSerializationInclusion
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). -
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:
findAnyGetter
in classBeanDescription
- Throws:
IllegalArgumentException
- Since:
- 1.6
-
findBackReferenceProperties
Method for locating all back-reference properties (setters, fields) bean has- Since:
- 1.6
-
_findPropertyFields
public LinkedHashMap<String,AnnotatedField> _findPropertyFields(Collection<String> ignoredProperties, boolean forSerialization) - 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.
-
findGetters
public LinkedHashMap<String,AnnotatedMethod> findGetters(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) - Specified by:
findGetters
in classBeanDescription
-
findSetters
- Specified by:
findSetters
in classBeanDescription
-
findSerializableFields
public LinkedHashMap<String,AnnotatedField> findSerializableFields(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) - Specified by:
findSerializableFields
in classBeanDescription
-
findDeserializableFields
public LinkedHashMap<String,AnnotatedField> findDeserializableFields(VisibilityChecker<?> visibilityChecker, Collection<String> ignoredProperties) - Specified by:
findDeserializableFields
in classBeanDescription
-