Uses of Interface
org.apache.commons.configuration2.beanutils.BeanDeclaration
-
Packages that use BeanDeclaration Package Description org.apache.commons.configuration2.beanutils In this package aConfiguration
implementation can be found that implements theDynaBean
interface.org.apache.commons.configuration2.builder This package contains the implementations of configuration builder classes used to create newConfiguration
objects.org.apache.commons.configuration2.builder.combined A package containing the implementation of the builder for combined configurations. -
-
Uses of BeanDeclaration in org.apache.commons.configuration2.beanutils
Classes in org.apache.commons.configuration2.beanutils that implement BeanDeclaration Modifier and Type Class Description class
CombinedBeanDeclaration
A special implementation of theBeanDeclaration
interface which allows combining multipleBeanDeclaration
objects.class
XMLBeanDeclaration
An implementation of theBeanDeclaration
interface that is suitable for XML configuration files.Methods in org.apache.commons.configuration2.beanutils that return BeanDeclaration Modifier and Type Method Description BeanDeclaration
BeanCreationContext. getBeanDeclaration()
Returns theBeanDeclaration
with the data for the new bean.BeanDeclaration
ConstructorArg. getBeanDeclaration()
Returns theBeanDeclaration
referenced by this constructor argument.Methods in org.apache.commons.configuration2.beanutils with parameters of type BeanDeclaration Modifier and Type Method Description java.lang.Object
BeanCreationContext. createBean(BeanDeclaration data)
Creates a bean based on the givenBeanDeclaration
.java.lang.Object
BeanHelper. createBean(BeanDeclaration data)
Returns a bean instance for the specified declaration.java.lang.Object
BeanHelper. createBean(BeanDeclaration data, java.lang.Class<?> defaultClass)
Returns a bean instance for the specified declaration.java.lang.Object
BeanHelper. createBean(BeanDeclaration data, java.lang.Class<?> defaultClass, java.lang.Object param)
The main method for creating and initializing beans from a configuration.protected static <T> java.lang.reflect.Constructor<T>
DefaultBeanFactory. findMatchingConstructor(java.lang.Class<T> beanClass, BeanDeclaration data)
Evaluates constructor arguments in the specifiedBeanDeclaration
and tries to find a unique matching constructor.static ConstructorArg
ConstructorArg. forBeanDeclaration(BeanDeclaration decl)
Creates a new instance ofConstructorArg
for the specifiedBeanDeclaration
.static ConstructorArg
ConstructorArg. forBeanDeclaration(BeanDeclaration decl, java.lang.String typeName)
Creates a new instance ofConstructorArg
for the specifiedBeanDeclaration
and sets the type name explicitly.void
BeanCreationContext. initBean(java.lang.Object bean, BeanDeclaration data)
Initializes a bean's property based on the givenBeanDeclaration
.void
BeanHelper. initBean(java.lang.Object bean, BeanDeclaration data)
Initializes the passed in bean.static void
BeanHelper. initBeanProperties(java.lang.Object bean, BeanDeclaration data)
Initializes the beans properties.Constructors in org.apache.commons.configuration2.beanutils with parameters of type BeanDeclaration Constructor Description CombinedBeanDeclaration(BeanDeclaration... decl)
Creates a new instance ofCombinedBeanDeclaration
and initializes it with the given child declarations. -
Uses of BeanDeclaration in org.apache.commons.configuration2.builder
Methods in org.apache.commons.configuration2.builder that return BeanDeclaration Modifier and Type Method Description protected BeanDeclaration
BasicConfigurationBuilder. createResultDeclaration(java.util.Map<java.lang.String,java.lang.Object> params)
Creates a newBeanDeclaration
which is used for creating new result objects dynamically.protected BeanDeclaration
BasicConfigurationBuilder. getResultDeclaration()
Returns theBeanDeclaration
that is used to create and initialize result objects. -
Uses of BeanDeclaration in org.apache.commons.configuration2.builder.combined
Classes in org.apache.commons.configuration2.builder.combined that implement BeanDeclaration Modifier and Type Class Description class
ConfigurationDeclaration
A specializedBeanDeclaration
implementation that represents the declaration of a configuration source.Methods in org.apache.commons.configuration2.builder.combined that return BeanDeclaration Modifier and Type Method Description protected BeanDeclaration
CombinedConfigurationBuilder. createResultDeclaration(java.util.Map<java.lang.String,java.lang.Object> params)
Creates a newBeanDeclaration
which is used for creating new result objects dynamically.
-