Package org.springframework.beans
Class ExtendedBeanInfoFactory
java.lang.Object
org.springframework.beans.ExtendedBeanInfoFactory
- All Implemented Interfaces:
- BeanInfoFactory,- Ordered
BeanInfoFactory implementation that evaluates whether bean classes have
 "non-standard" JavaBeans setter methods and are thus candidates for introspection
 by Spring's (package-visible) ExtendedBeanInfo implementation.
 Ordered at Ordered.LOWEST_PRECEDENCE to allow other user-defined
 BeanInfoFactory types to take precedence.
- Since:
- 3.2
- Author:
- Chris Beams
- See Also:
- 
Field SummaryFields inherited from interface org.springframework.core.OrderedHIGHEST_PRECEDENCE, LOWEST_PRECEDENCE
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptiongetBeanInfo(Class<?> beanClass) Return anExtendedBeanInfofor the given bean class, if applicable.intgetOrder()Get the order value of this object.
- 
Constructor Details- 
ExtendedBeanInfoFactorypublic ExtendedBeanInfoFactory()
 
- 
- 
Method Details- 
getBeanInfoReturn anExtendedBeanInfofor the given bean class, if applicable.- Specified by:
- getBeanInfoin interface- BeanInfoFactory
- Parameters:
- beanClass- the bean class
- Returns:
- the BeanInfo, or nullif the given class is not supported
- Throws:
- IntrospectionException- in case of exceptions
 
- 
getOrderpublic int getOrder()Description copied from interface:OrderedGet the order value of this object.Higher values are interpreted as lower priority. As a consequence, the object with the lowest value has the highest priority (somewhat analogous to Servlet load-on-startupvalues).Same order values will result in arbitrary sort positions for the affected objects. 
 
-