Uses of Interface
org.apache.commons.beanutils2.DynaBean
Packages that use DynaBean
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 DynaBean in org.apache.commons.beanutils2
Classes in org.apache.commons.beanutils2 that implement DynaBeanModifier and TypeClassDescriptionclass
Minimal implementation of theDynaBean
interface.class
ImplementsDynaBean
to wrap a standard JavaBean instance, so that DynaBean APIs can be used to access its properties, though this implementation allows type conversion to occur when properties are set.class
DynaBean which automatically adds properties to theDynaClass
and provides Lazy List and Lazy Map features.class
Provides a light weightDynaBean</code> facade to a <code>Map
with lazy map/list processing.class
ImplementsDynaBean
to wrap a standard JavaBean instance, so that DynaBean APIs can be used to access its properties.Methods in org.apache.commons.beanutils2 that return DynaBeanModifier and TypeMethodDescriptionBaseDynaBeanMapDecorator.getDynaBean()
Provide access to the underlyingDynaBean
this Map decorates.BasicDynaClass.newInstance()
Instantiate and return a new DynaBean instance, associated with this DynaClass.DynaClass.newInstance()
Instantiates and return a new DynaBean instance, associated with this DynaClass.LazyDynaMap.newInstance()
Instantiate and return a new DynaBean instance, associated with this DynaClass.WrapDynaClass.newInstance()
Instantiates a new standard JavaBean instance associated with this DynaClass and return it wrapped in a new WrapDynaBean instance.DynaBean[]
LazyDynaList.toDynaBeanArray()
Converts the List to an DynaBean Array.Constructors in org.apache.commons.beanutils2 with parameters of type DynaBeanModifierConstructorDescriptionBaseDynaBeanMapDecorator
(DynaBean dynaBean) Constructs a read only Map for the specifiedDynaBean
.BaseDynaBeanMapDecorator
(DynaBean dynaBean, boolean readOnly) Constructs a Map for the specifiedDynaBean
.DynaBeanPropertyMapDecorator
(DynaBean dynaBean) Constructs a read only Map for the specifiedDynaBean
.DynaBeanPropertyMapDecorator
(DynaBean dynaBean, boolean readOnly) Constructs a Map for the specifiedDynaBean
. -
Uses of DynaBean in org.apache.commons.beanutils2.sql
Classes in org.apache.commons.beanutils2.sql that implement DynaBeanModifier and TypeClassDescriptionclass
Fields in org.apache.commons.beanutils2.sql with type parameters of type DynaBeanModifier and TypeFieldDescriptionRowSetDynaClass.rows
The list ofDynaBean
s representing the contents of the originalResultSet
on which thisRowSetDynaClass
was based.Methods in org.apache.commons.beanutils2.sql that return DynaBeanModifier and TypeMethodDescriptionprotected DynaBean
RowSetDynaClass.createDynaBean()
Create and return a newDynaBean
instance to be used for representing a row in the underlying result set.ResultSetIterator.next()
Gets the next element in the iteration.Methods in org.apache.commons.beanutils2.sql that return types with arguments of type DynaBeanModifier and TypeMethodDescriptionRowSetDynaClass.getRows()
Gets aList
containing theDynaBean
s that represent the contents of eachRow
from theResultSet
that was the basis of thisRowSetDynaClass
instance.ResultSetDynaClass.iterator()