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

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

Introduction

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

The text is from its open source code.

Implementation

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

Method

booleancontainsBeanDefinition(String beanName)
Check if this registry contains a bean definition with the given name.
BeanDefinitiongetBeanDefinition(String beanName)
Return the BeanDefinition for the given bean name.
intgetBeanDefinitionCount()
Return the number of beans defined in the registry.
String[]getBeanDefinitionNames()
Return the names of all beans defined in this registry.
ClassgetClass()
Returns the runtime class of this Object .
booleanisAlias(String name)
Determine whether this given name is defines as an alias (as opposed to the name of an actually registered component).
booleanisBeanNameInUse(String beanName)
Determine whether the given bean name is already in use within this registry, i.e.
voidregisterAlias(String name, String alias)
Given a name, register an alias for it.
voidregisterBeanDefinition(String beanName, BeanDefinition beanDefinition)
Register a new bean definition with this registry.
voidremoveAlias(String alias)
Remove the specified alias from this registry.
voidremoveBeanDefinition(String beanName)
Remove the BeanDefinition for the given name.