Uses of Class
org.apache.commons.beanutils.DynaProperty
Packages that use DynaProperty
Package
Description
The Bean Introspection Utilities component of the Apache Commons
subproject offers low-level utility classes that assist in getting and setting
property values on Java classes that follow the naming design patterns outlined
in the JavaBeans Specification, as well as mechanisms for dynamically defining
and accessing bean properties.
-
Uses of DynaProperty in org.apache.commons.beanutils
Fields in org.apache.commons.beanutils declared as DynaPropertyModifier and TypeFieldDescriptionprotected DynaProperty[]
BasicDynaClass.properties
The set of dynamic properties that are part of this DynaClass.protected DynaProperty[]
JDBCDynaClass.properties
The set of dynamic properties that are part of thisDynaClass
.protected DynaProperty[]
WrapDynaClass.properties
The set of dynamic properties that are part of this DynaClass.Fields in org.apache.commons.beanutils with type parameters of type DynaPropertyModifier and TypeFieldDescriptionprotected HashMap
<String, DynaProperty> BasicDynaClass.propertiesMap
The set of dynamic properties that are part of this DynaClass, keyed by the property name.protected Map
<String, DynaProperty> JDBCDynaClass.propertiesMap
The set of dynamic properties that are part of thisDynaClass
, keyed by the property name.protected HashMap
<String, DynaProperty> WrapDynaClass.propertiesMap
The set of dynamic properties that are part of this DynaClass, keyed by the property name.Methods in org.apache.commons.beanutils that return DynaPropertyModifier and TypeMethodDescriptionprotected DynaProperty
JDBCDynaClass.createDynaProperty
(ResultSetMetaData metadata, int i) Factory method to create a new DynaProperty for the given index into the result set metadata.private DynaProperty[]
BaseDynaBeanMapDecorator.getDynaProperties()
Convenience method to retrieve theDynaProperty
s for thisDynaClass
.BasicDynaClass.getDynaProperties()
Return an array ofProperyDescriptors
for the properties currently defined in this DynaClass.DynaClass.getDynaProperties()
Return an array ofProperyDescriptors
for the properties currently defined in this DynaClass.JDBCDynaClass.getDynaProperties()
Return an array ofProperyDescriptors
for the properties currently defined in this DynaClass.LazyDynaMap.getDynaProperties()
Return an array ofProperyDescriptors
for the properties currently defined in this DynaClass.WrapDynaClass.getDynaProperties()
Return an array ofProperyDescriptors
for the properties currently defined in this DynaClass.protected DynaProperty
BasicDynaBean.getDynaProperty
(String name) Return the property descriptor for the specified property name.BasicDynaClass.getDynaProperty
(String name) Return a property descriptor for the specified property, if it exists; otherwise, returnnull
.DynaClass.getDynaProperty
(String name) Return a property descriptor for the specified property, if it exists; otherwise, returnnull
.JDBCDynaClass.getDynaProperty
(String name) Return a property descriptor for the specified property, if it exists; otherwise, returnnull
.LazyDynaClass.getDynaProperty
(String name) Return a property descriptor for the specified property.LazyDynaMap.getDynaProperty
(String name) Return a property descriptor for the specified property.protected DynaProperty
WrapDynaBean.getDynaProperty
(String name) Return the property descriptor for the specified property name.WrapDynaClass.getDynaProperty
(String name) Return a property descriptor for the specified property, if it exists; otherwise, returnnull
.Methods in org.apache.commons.beanutils with parameters of type DynaPropertyModifier and TypeMethodDescriptionprotected void
LazyDynaClass.add
(DynaProperty property) Add a new dynamic property.protected void
LazyDynaMap.add
(DynaProperty property) Add a new dynamic property.private static Class
<?> BeanUtilsBean.dynaPropertyType
(DynaProperty dynaProperty, Object value) Determines the type of aDynaProperty
.protected void
BasicDynaClass.setProperties
(DynaProperty[] properties) Set the list of dynamic properties supported by this DynaClass.Constructors in org.apache.commons.beanutils with parameters of type DynaPropertyModifierConstructorDescriptionBasicDynaClass
(String name, Class<?> dynaBeanClass, DynaProperty[] properties) Construct a new BasicDynaClass with the specified parameters.LazyDynaClass
(String name, Class<?> dynaBeanClass, DynaProperty[] properties) Construct a new LazyDynaClass with the specified name, DynaBean class and properties.LazyDynaClass
(String name, DynaProperty[] properties) Construct a new LazyDynaClass with the specified name and properties.LazyDynaMap
(String name, DynaProperty[] properties) Construct a newLazyDynaMap
with the specified name and properties.LazyDynaMap
(DynaProperty[] properties) Construct a newLazyDynaMap
with the specified properties.