Uses of Interface
org.apache.commons.beanutils.DynaClass
Packages that use DynaClass
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 DynaClass in org.apache.commons.beanutils
Subinterfaces of DynaClass in org.apache.commons.beanutilsModifier and TypeInterfaceDescriptioninterface
A specialized extension toDynaClass
that allows properties to be added or removed dynamically.Classes in org.apache.commons.beanutils that implement DynaClassModifier and TypeClassDescriptionclass
Minimal implementation of theDynaClass
interface.(package private) class
Provides common logic for JDBC implementations ofDynaClass
.class
DynaClass which implements theMutableDynaClass
interface.class
Provides a light weightDynaBean
facade to aMap
with lazy map/list processing.class
Implementation ofDynaClass
for DynaBeans that wrap thejava.sql.Row
objects of ajava.sql.ResultSet
.class
class
Implementation ofDynaClass
for DynaBeans that wrap standard JavaBean instances.Fields in org.apache.commons.beanutils declared as DynaClassModifier and TypeFieldDescriptionprotected DynaClass
BasicDynaBean.dynaClass
TheDynaClass
"base class" that this DynaBean is associated with.private DynaClass
LazyDynaList.elementDynaClass
The DynaClass of the List's elements.Methods in org.apache.commons.beanutils that return DynaClassModifier and TypeMethodDescriptionBasicDynaBean.getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.DynaBean.getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.LazyDynaBean.getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.private DynaClass
LazyDynaList.getDynaClass()
Return the DynaClass.ResultSetIterator.getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.WrapDynaBean.getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.Methods in org.apache.commons.beanutils with parameters of type DynaClassModifier and TypeMethodDescriptionvoid
LazyDynaList.setElementDynaClass
(DynaClass elementDynaClass) Set the element Type and DynaClass.Constructors in org.apache.commons.beanutils with parameters of type DynaClassModifierConstructorDescriptionBasicDynaBean
(DynaClass dynaClass) Construct a newDynaBean
associated with the specifiedDynaClass
instance.LazyDynaBean
(DynaClass dynaClass) Construct a newDynaBean
associated with the specifiedDynaClass
instance - if its not aMutableDynaClass
then a newLazyDynaClass
is created and the properties copied.LazyDynaList
(DynaClass elementDynaClass) Construct a LazyDynaList with a specified DynaClass for its elements.LazyDynaMap
(DynaClass dynaClass) Construct a newLazyDynaMap
based on an exisiting DynaClass