Uses of Interface
org.apache.commons.beanutils.DynaBean
-
Packages that use DynaBean 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 DynaBean in org.apache.commons.beanutils
Classes in org.apache.commons.beanutils that implement DynaBean Modifier and Type Class Description classBasicDynaBeanMinimal implementation of theDynaBeaninterface.classConvertingWrapDynaBeanImplementation ofDynaBeanthat 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.classLazyDynaBeanDynaBean which automatically adds properties to theDynaClassand provides Lazy List and Lazy Map features.classLazyDynaMapProvides a light weightDynaBeanfacade to aMapwith lazy map/list processing.classResultSetIteratorclassWrapDynaBeanImplementation ofDynaBeanthat wraps a standard JavaBean instance, so that DynaBean APIs can be used to access its properties.Fields in org.apache.commons.beanutils declared as DynaBean Modifier and Type Field Description private DynaBeanBaseDynaBeanMapDecorator. dynaBeanFields in org.apache.commons.beanutils with type parameters of type DynaBean Modifier and Type Field Description protected java.util.List<DynaBean>RowSetDynaClass. rowsThe list ofDynaBeans representing the contents of the originalResultSeton which thisRowSetDynaClasswas based.Methods in org.apache.commons.beanutils that return DynaBean Modifier and Type Method Description protected DynaBeanRowSetDynaClass. createDynaBean()Create and return a newDynaBeaninstance to be used for representing a row in the underlying result set.DynaBeanBaseDynaBeanMapDecorator. getDynaBean()Provide access to the underlyingDynaBeanthis Map decorates.DynaBeanBasicDynaClass. newInstance()Instantiate and return a new DynaBean instance, associated with this DynaClass.DynaBeanDynaClass. newInstance()Instantiate and return a new DynaBean instance, associated with this DynaClass.DynaBeanJDBCDynaClass. newInstance()Instantiate and return a new DynaBean instance, associated with this DynaClass.DynaBeanLazyDynaMap. newInstance()Instantiate and return a new DynaBean instance, associated with this DynaClass.DynaBeanWrapDynaClass. newInstance()Instantiates a new standard JavaBean instance associated with this DynaClass and return it wrapped in a new WrapDynaBean instance.DynaBeanResultSetIterator. next()Return the next element in the iteration.DynaBean[]LazyDynaList. toDynaBeanArray()Converts the List to an DynaBean Array.private DynaBeanLazyDynaList. transform(java.lang.Object element)Transform the element into a DynaBean:Methods in org.apache.commons.beanutils that return types with arguments of type DynaBean Modifier and Type Method Description java.util.List<DynaBean>RowSetDynaClass. getRows()Return aListcontaining theDynaBeans that represent the contents of eachRowfrom theResultSetthat was the basis of thisRowSetDynaClassinstance.java.util.Iterator<DynaBean>ResultSetDynaClass. iterator()Constructors in org.apache.commons.beanutils with parameters of type DynaBean Constructor Description BaseDynaBeanMapDecorator(DynaBean dynaBean)Constructs a read only Map for the specifiedDynaBean.BaseDynaBeanMapDecorator(DynaBean dynaBean, boolean readOnly)Construct a Map for the specifiedDynaBean.DynaBeanMapDecorator(DynaBean dynaBean)Deprecated.Constructs a read only Map for the specifiedDynaBean.DynaBeanMapDecorator(DynaBean dynaBean, boolean readOnly)Deprecated.Construct a Map for the specifiedDynaBean.DynaBeanPropertyMapDecorator(DynaBean dynaBean)Constructs a read only Map for the specifiedDynaBean.DynaBeanPropertyMapDecorator(DynaBean dynaBean, boolean readOnly)Construct a Map for the specifiedDynaBean.
-