Uses of Class
org.apache.commons.configuration2.beanutils.ConstructorArg
-
Packages that use ConstructorArg Package Description org.apache.commons.configuration2.beanutils In this package aConfiguration
implementation can be found that implements theDynaBean
interface. -
-
Uses of ConstructorArg in org.apache.commons.configuration2.beanutils
Methods in org.apache.commons.configuration2.beanutils that return ConstructorArg Modifier and Type Method Description private ConstructorArg
XMLBeanDeclaration. createConstructorArg(XMLBeanDeclaration.NodeData<?> child)
Creates aConstructorArg
object for the specified configuration node.static ConstructorArg
ConstructorArg. forBeanDeclaration(BeanDeclaration decl)
Creates a new instance ofConstructorArg
for the specifiedBeanDeclaration
.static ConstructorArg
ConstructorArg. forBeanDeclaration(BeanDeclaration beanDeclaration, java.lang.String typeName)
Creates a new instance ofConstructorArg
for the specifiedBeanDeclaration
and sets the type name explicitly.static ConstructorArg
ConstructorArg. forValue(java.lang.Object value)
Creates a new instance ofConstructorArg
for the specified simple value.static ConstructorArg
ConstructorArg. forValue(java.lang.Object value, java.lang.String typeName)
Creates a new instance ofConstructorArg
for the specified simple value and sets the type name explicitly.Methods in org.apache.commons.configuration2.beanutils that return types with arguments of type ConstructorArg Modifier and Type Method Description java.util.Collection<ConstructorArg>
BeanDeclaration. getConstructorArgs()
Gets a collection with constructor arguments.java.util.Collection<ConstructorArg>
CombinedBeanDeclaration. getConstructorArgs()
Gets a collection with constructor arguments.private static java.util.Collection<ConstructorArg>
DefaultBeanFactory. getConstructorArgs(BeanDeclaration data)
Gets constructor arguments from a bean declaration.java.util.Collection<ConstructorArg>
XMLBeanDeclaration. getConstructorArgs()
Gets a collection with constructor arguments.private static java.util.Collection<ConstructorArg>
DefaultBeanFactory. nullSafeConstructorArgs(BeanDeclaration data)
Fetches constructor arguments from the given bean declaration.Method parameters in org.apache.commons.configuration2.beanutils with type arguments of type ConstructorArg Modifier and Type Method Description private static boolean
DefaultBeanFactory. matchesConstructor(java.lang.reflect.Constructor<?> ctor, java.util.Collection<ConstructorArg> args)
Checks whether the given constructor is compatible with the given list of arguments.
-