Java org.springframework.beans.factory ListableBeanFactory fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans.factory ListableBeanFactory fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans.factory ListableBeanFactory.

The text is from its open source code.

Implementation

org.springframework.beans.factory.ListableBeanFactory has the following implementations.
Click this link to see all its implementation.

Method

booleancontainsBean(String name)
Does this bean factory contain a bean definition or externally registered singleton instance with the given name?
booleancontainsBeanDefinition(String beanName)
Check if this bean factory contains a bean definition with the given name.
String[]getAliases(String name)
Return the aliases for the given bean name, if any.
ObjectgetBean(String name)
Return an instance, which may be shared or independent, of the specified bean.
TgetBean(String name, Class requiredType)
Return an instance, which may be shared or independent, of the specified bean.
intgetBeanDefinitionCount()
Return the number of beans defined in the factory.
String[]getBeanDefinitionNames()
Return the names of all beans defined in this factory.
String[]getBeanNamesForType(ResolvableType type)
Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
String[]getBeanNamesForType(@Nullable Class type)
Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
String[]getBeanNamesForType(ResolvableType type, boolean includeNonSingletons, boolean allowEagerInit)
Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
String[]getBeanNamesForType(@Nullable Class type, boolean includeNonSingletons, boolean allowEagerInit)
Return the names of beans matching the given type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
MapgetBeansOfType(@Nullable Class type, boolean includeNonSingletons, boolean allowEagerInit)
Return the bean instances that match the given object type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
MapgetBeansOfType(@Nullable Class type)
Return the bean instances that match the given object type (including subclasses), judging from either bean definitions or the value of getObjectType in the case of FactoryBeans.
ClassgetType(String name)
Determine the type of the bean with the given name.