Uses of Interface
org.apache.commons.beanutils.DynaClass
-
Packages that use DynaClass Package Description org.apache.commons.beanutils 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.beanutils Modifier and Type Interface Description interface
MutableDynaClass
A specialized extension toDynaClass
that allows properties to be added or removed dynamically.Classes in org.apache.commons.beanutils that implement DynaClass Modifier and Type Class Description class
BasicDynaClass
Minimal implementation of theDynaClass
interface.(package private) class
JDBCDynaClass
Provides common logic for JDBC implementations ofDynaClass
.class
LazyDynaClass
DynaClass which implements theMutableDynaClass
interface.class
LazyDynaMap
Provides a light weightDynaBean
facade to aMap
with lazy map/list processing.class
ResultSetDynaClass
Implementation ofDynaClass
for DynaBeans that wrap thejava.sql.Row
objects of ajava.sql.ResultSet
.class
RowSetDynaClass
class
WrapDynaClass
Implementation ofDynaClass
for DynaBeans that wrap standard JavaBean instances.Fields in org.apache.commons.beanutils declared as DynaClass Modifier and Type Field Description protected 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 DynaClass Modifier and Type Method Description DynaClass
BasicDynaBean. getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.DynaClass
DynaBean. getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.DynaClass
LazyDynaBean. getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.private DynaClass
LazyDynaList. getDynaClass()
Return the DynaClass.DynaClass
ResultSetIterator. getDynaClass()
Return theDynaClass
instance that describes the set of properties available for this DynaBean.DynaClass
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 DynaClass Modifier and Type Method Description void
LazyDynaList. setElementDynaClass(DynaClass elementDynaClass)
Set the element Type and DynaClass.Constructors in org.apache.commons.beanutils with parameters of type DynaClass Constructor Description BasicDynaBean(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
-