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 interfaceMutableDynaClassA specialized extension toDynaClassthat allows properties to be added or removed dynamically.Classes in org.apache.commons.beanutils that implement DynaClass Modifier and Type Class Description classBasicDynaClassMinimal implementation of theDynaClassinterface.classLazyDynaClassDynaClass which implements theMutableDynaClassinterface.classLazyDynaMapProvides a light weightDynaBeanfacade to aMapwith lazy map/list processing.classResultSetDynaClassImplementation ofDynaClassfor DynaBeans that wrap thejava.sql.Rowobjects of ajava.sql.ResultSet.classRowSetDynaClassclassWrapDynaClassImplementation ofDynaClassfor DynaBeans that wrap standard JavaBean instances.Fields in org.apache.commons.beanutils declared as DynaClass Modifier and Type Field Description protected DynaClassBasicDynaBean. dynaClassTheDynaClass"base class" that this DynaBean is associated with.Methods in org.apache.commons.beanutils that return DynaClass Modifier and Type Method Description DynaClassBasicDynaBean. getDynaClass()Return theDynaClassinstance that describes the set of properties available for this DynaBean.DynaClassDynaBean. getDynaClass()Return theDynaClassinstance that describes the set of properties available for this DynaBean.DynaClassLazyDynaBean. getDynaClass()Return theDynaClassinstance that describes the set of properties available for this DynaBean.DynaClassResultSetIterator. getDynaClass()Return theDynaClassinstance that describes the set of properties available for this DynaBean.DynaClassWrapDynaBean. getDynaClass()Return theDynaClassinstance 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 voidLazyDynaList. 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 newDynaBeanassociated with the specifiedDynaClassinstance.LazyDynaBean(DynaClass dynaClass)Construct a newDynaBeanassociated with the specifiedDynaClassinstance - if its not aMutableDynaClassthen a newLazyDynaClassis created and the properties copied.LazyDynaList(DynaClass elementDynaClass)Construct a LazyDynaList with a specified DynaClass for its elements.LazyDynaMap(DynaClass dynaClass)Construct a newLazyDynaMapbased on an exisiting DynaClass
-