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.
|
Modifier and Type | Class and Description |
---|---|
class |
BasicDynaBean
Minimal implementation of the
DynaBean interface. |
class |
ConvertingWrapDynaBean
Implementation of
DynaBean that wraps 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 |
LazyDynaBean
DynaBean which automatically adds properties to the
DynaClass
and provides Lazy List and Lazy Map features. |
class |
LazyDynaMap
Provides a light weight
DynaBean facade to a Map
with lazy map/list processing. |
class |
ResultSetIterator
|
class |
WrapDynaBean
Implementation of
DynaBean that wraps a standard JavaBean
instance, so that DynaBean APIs can be used to access its properties. |
Modifier and Type | Field and Description |
---|---|
protected List<DynaBean> |
RowSetDynaClass.rows
The list of
DynaBean s representing the contents of
the original ResultSet on which this
RowSetDynaClass was based. |
Modifier and Type | Method and Description |
---|---|
protected DynaBean |
RowSetDynaClass.createDynaBean()
Create and return a new
DynaBean instance to be used for
representing a row in the underlying result set. |
DynaBean |
BaseDynaBeanMapDecorator.getDynaBean()
Provide access to the underlying
DynaBean
this Map decorates. |
DynaBean |
LazyDynaMap.newInstance()
Instantiate and return a new DynaBean instance, associated
with this DynaClass.
|
DynaBean |
BasicDynaClass.newInstance()
Instantiate and return a new DynaBean instance, associated
with this DynaClass.
|
DynaBean |
WrapDynaClass.newInstance()
Instantiates a new standard JavaBean instance associated with
this DynaClass and return it wrapped in a new WrapDynaBean
instance.
|
DynaBean |
DynaClass.newInstance()
Instantiate and return a new DynaBean instance, associated
with this DynaClass.
|
DynaBean |
ResultSetIterator.next()
Return the next element in the iteration.
|
DynaBean[] |
LazyDynaList.toDynaBeanArray()
Converts the List to an DynaBean Array.
|
Modifier and Type | Method and Description |
---|---|
List<DynaBean> |
RowSetDynaClass.getRows()
Return a
List containing the DynaBean s that
represent the contents of each Row from the
ResultSet that was the basis of this
RowSetDynaClass instance. |
Iterator<DynaBean> |
ResultSetDynaClass.iterator()
|
Constructor and Description |
---|
BaseDynaBeanMapDecorator(DynaBean dynaBean)
Constructs a read only Map for the specified
DynaBean . |
BaseDynaBeanMapDecorator(DynaBean dynaBean,
boolean readOnly)
Construct a Map for the specified
DynaBean . |
DynaBeanMapDecorator(DynaBean dynaBean)
Deprecated.
Constructs a read only Map for the specified
DynaBean . |
DynaBeanMapDecorator(DynaBean dynaBean,
boolean readOnly)
Deprecated.
Construct a Map for the specified
DynaBean . |
DynaBeanPropertyMapDecorator(DynaBean dynaBean)
Constructs a read only Map for the specified
DynaBean . |
DynaBeanPropertyMapDecorator(DynaBean dynaBean,
boolean readOnly)
Construct a Map for the specified
DynaBean . |
Copyright © 2000–2019 The Apache Software Foundation. All rights reserved.