Java org.apache.commons.beanutils LazyDynaClass fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.beanutils LazyDynaClass fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.beanutils LazyDynaClass.

The text is from its open source code.

Subclass

org.apache.commons.beanutils.LazyDynaClass has subclasses.
Click this link to see all its subclasses.

Constructor

LazyDynaClass()
Construct a new LazyDynaClass with default parameters.
LazyDynaClass(String name, Class dynaBeanClass)
Construct a new LazyDynaClass with the specified name and DynaBean class.
LazyDynaClass(String name, DynaProperty[] properties)
Construct a new LazyDynaClass with the specified name and properties.

Method

voidadd(String name)
Add a new dynamic property with no restrictions on data type, readability, or writeability.
voidadd(DynaProperty property)
Add a new dynamic property.
voidadd(String name, Class type)
Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability.
StringgetName()
Return the name of this DynaClass (analogous to the getName() method of java.lang.ClassDynaClass implementation class to support different dynamic classes, with different sets of properties.
DynaBeannewInstance()
Instantiate and return a new DynaBean instance, associated with this DynaClass.
voidsetReturnNull(boolean returnNull)
Set whether this DynaClass should return a null from the getDynaProperty(name) method if the property doesn't exist.