Uses of Class
org.apache.commons.beanutils2.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.
Contains code that relies on the
java.sql
module.-
Uses of DynaProperty in org.apache.commons.beanutils2
Modifier and TypeFieldDescriptionstatic final DynaProperty[]
DynaProperty.EMPTY_ARRAY
Empty array.protected DynaProperty[]
BasicDynaClass.properties
The set of dynamic properties that are part of this DynaClass.protected DynaProperty[]
WrapDynaClass.properties
The set of dynamic properties that are part of this DynaClass.Modifier and TypeFieldDescriptionprotected HashMap<String,
DynaProperty> BasicDynaClass.propertiesMap
The set of dynamic properties that are part of this DynaClass, 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.Modifier and TypeMethodDescriptionBasicDynaClass.getDynaProperties()
Return an array ofPropertyDescriptor
for the properties currently defined in this DynaClass.DynaClass.getDynaProperties()
Returns an array ofPropertyDescriptor
for the properties currently defined in this DynaClass.LazyDynaMap.getDynaProperties()
Return an array ofPropertyDescriptor
for the properties currently defined in this DynaClass.WrapDynaClass.getDynaProperties()
Return an array ofPropertyDescriptor
for the properties currently defined in this DynaClass.protected DynaProperty
BasicDynaBean.getDynaProperty
(String name) Gets the property descriptor for the specified property name.BasicDynaClass.getDynaProperty
(String name) Gets a property descriptor for the specified property, if it exists; otherwise, returnnull
.DynaClass.getDynaProperty
(String name) Returns 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) Gets the property descriptor for the specified property name.WrapDynaClass.getDynaProperty
(String name) Gets a property descriptor for the specified property, if it exists; otherwise, returnnull
.Modifier and TypeMethodDescriptionprotected void
LazyDynaClass.add
(DynaProperty property) Add a new dynamic property.protected void
LazyDynaMap.add
(DynaProperty property) Add a new dynamic property.protected void
BasicDynaClass.setProperties
(DynaProperty[] properties) Sets the list of dynamic properties supported by this DynaClass.ModifierConstructorDescriptionBasicDynaClass
(String name, Class<?> dynaBeanClass, DynaProperty[] properties) Constructs a new BasicDynaClass with the specified parameters.LazyDynaClass
(String name, Class<?> dynaBeanClass, DynaProperty[] properties) Constructs a new LazyDynaClass with the specified name, DynaBean class and properties.LazyDynaClass
(String name, DynaProperty[] properties) Constructs a new LazyDynaClass with the specified name and properties.LazyDynaMap
(String name, DynaProperty[] properties) Constructs a newLazyDynaMap
with the specified name and properties.LazyDynaMap
(DynaProperty[] properties) Constructs a newLazyDynaMap
with the specified properties. -
Uses of DynaProperty in org.apache.commons.beanutils2.sql
Modifier and TypeFieldDescriptionprotected DynaProperty[]
AbstractJdbcDynaClass.properties
The set of dynamic properties that are part of thisDynaClass
.protected DynaProperty[]
AbstractJdbcDynaClass.properties
The set of dynamic properties that are part of thisDynaClass
.Modifier and TypeFieldDescriptionprotected Map<String,
DynaProperty> AbstractJdbcDynaClass.propertiesMap
The set of dynamic properties that are part of thisDynaClass
, keyed by the property name.protected Map<String,
DynaProperty> AbstractJdbcDynaClass.propertiesMap
The set of dynamic properties that are part of thisDynaClass
, keyed by the property name.