Uses of Class
org.apache.commons.beanutils.DynaProperty
-
Packages that use DynaProperty 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 DynaProperty in org.apache.commons.beanutils
Fields in org.apache.commons.beanutils declared as DynaProperty Modifier and Type Field Description protected DynaProperty[]BasicDynaClass. propertiesThe set of dynamic properties that are part of this DynaClass.protected DynaProperty[]JDBCDynaClass. propertiesThe set of dynamic properties that are part of thisDynaClass.protected DynaProperty[]JDBCDynaClass. propertiesThe set of dynamic properties that are part of thisDynaClass.protected DynaProperty[]WrapDynaClass. propertiesThe set of dynamic properties that are part of this DynaClass.Fields in org.apache.commons.beanutils with type parameters of type DynaProperty Modifier and Type Field Description protected java.util.HashMap<java.lang.String,DynaProperty>BasicDynaClass. propertiesMapThe set of dynamic properties that are part of this DynaClass, keyed by the property name.protected java.util.Map<java.lang.String,DynaProperty>JDBCDynaClass. propertiesMapThe set of dynamic properties that are part of thisDynaClass, keyed by the property name.protected java.util.Map<java.lang.String,DynaProperty>JDBCDynaClass. propertiesMapThe set of dynamic properties that are part of thisDynaClass, keyed by the property name.protected java.util.HashMap<java.lang.String,DynaProperty>WrapDynaClass. propertiesMapThe set of dynamic properties that are part of this DynaClass, keyed by the property name.Methods in org.apache.commons.beanutils that return DynaProperty Modifier and Type Method Description DynaProperty[]BasicDynaClass. getDynaProperties()Return an array ofProperyDescriptorsfor the properties currently defined in this DynaClass.DynaProperty[]DynaClass. getDynaProperties()Return an array ofProperyDescriptorsfor the properties currently defined in this DynaClass.DynaProperty[]LazyDynaMap. getDynaProperties()Return an array ofProperyDescriptorsfor the properties currently defined in this DynaClass.DynaProperty[]WrapDynaClass. getDynaProperties()Return an array ofProperyDescriptorsfor the properties currently defined in this DynaClass.protected DynaPropertyBasicDynaBean. getDynaProperty(java.lang.String name)Return the property descriptor for the specified property name.DynaPropertyBasicDynaClass. getDynaProperty(java.lang.String name)Return a property descriptor for the specified property, if it exists; otherwise, returnnull.DynaPropertyDynaClass. getDynaProperty(java.lang.String name)Return a property descriptor for the specified property, if it exists; otherwise, returnnull.DynaPropertyLazyDynaClass. getDynaProperty(java.lang.String name)Return a property descriptor for the specified property.DynaPropertyLazyDynaMap. getDynaProperty(java.lang.String name)Return a property descriptor for the specified property.protected DynaPropertyWrapDynaBean. getDynaProperty(java.lang.String name)Return the property descriptor for the specified property name.DynaPropertyWrapDynaClass. getDynaProperty(java.lang.String name)Return a property descriptor for the specified property, if it exists; otherwise, returnnull.Methods in org.apache.commons.beanutils with parameters of type DynaProperty Modifier and Type Method Description protected voidLazyDynaClass. add(DynaProperty property)Add a new dynamic property.protected voidLazyDynaMap. add(DynaProperty property)Add a new dynamic property.protected voidBasicDynaClass. setProperties(DynaProperty[] properties)Set the list of dynamic properties supported by this DynaClass.Constructors in org.apache.commons.beanutils with parameters of type DynaProperty Constructor Description BasicDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass, DynaProperty[] properties)Construct a new BasicDynaClass with the specified parameters.LazyDynaClass(java.lang.String name, java.lang.Class<?> dynaBeanClass, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name, DynaBean class and properties.LazyDynaClass(java.lang.String name, DynaProperty[] properties)Construct a new LazyDynaClass with the specified name and properties.LazyDynaMap(java.lang.String name, DynaProperty[] properties)Construct a newLazyDynaMapwith the specified name and properties.LazyDynaMap(DynaProperty[] properties)Construct a newLazyDynaMapwith the specified properties.
-