|
|||||||||
| Home >> All >> org >> apache >> commons >> [ beanutils overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
org.apache.commons.beanutils
Class LazyDynaMap

java.lang.Objectorg.apache.commons.beanutils.LazyDynaBean
org.apache.commons.beanutils.LazyDynaMap
- All Implemented Interfaces:
- DynaBean, DynaClass, MutableDynaClass, java.io.Serializable
- public class LazyDynaMap
- extends LazyDynaBean
- implements MutableDynaClass
- extends LazyDynaBean
Provides a light weight DynaBean facade to a Map with lazy map/list processing.
Its a light weight DynaBean implementation because there is no
actual DynaClass associated with this DynaBean - in fact
it implements the DynaClass interface itself providing pseudo DynaClass
behaviour from the actual values stored in the Map.
As well providing rhe standard DynaBean access to the Map's properties
this class also provides the usual Lazy behaviour:
- Properties don't need to be pre-defined in a
DynaClass - Indexed properties (
ListsorArrays) are automatically instantiated and grown so that they are large enough to cater for the index being set. - Mapped properties are automatically instantiated.
Restricted DynaClass
This class implements the MutableDynaClass interface.
MutableDynaClass have a facility to restrict the DynaClass
so that its properties cannot be modified. If the MutableDynaClass is
restricted then calling any of the set() methods for a property which
doesn't exist will result in a IllegalArgumentException being thrown.
| Field Summary | |
protected java.lang.String |
name
The name of this DynaClass (analogous to the getName() method of java.lang.Class). |
protected boolean |
restricted
Controls whether changes to this DynaClass's properties are allowed. |
protected boolean |
returnNull
Controls whether the getDynaProperty() method returns
null if a property doesn't exist - or creates a new one. |
| Fields inherited from class org.apache.commons.beanutils.LazyDynaBean |
BigDecimal_ZERO, BigInteger_ZERO, Byte_ZERO, Character_SPACE, Double_ZERO, dynaClass, Float_ZERO, Integer_ZERO, Long_ZERO, Short_ZERO, values |
| Constructor Summary | |
LazyDynaMap()
Default Constructor. |
|
LazyDynaMap(DynaClass dynaClass)
Construct a new LazyDynaMap based on an exisiting DynaClass |
|
LazyDynaMap(DynaProperty[] properties)
Construct a new LazyDynaMap with the specified properties. |
|
LazyDynaMap(java.util.Map values)
Construct a new LazyDynaMap with the specified Map. |
|
LazyDynaMap(java.lang.String name)
Construct a new LazyDynaMap with the specified name. |
|
LazyDynaMap(java.lang.String name,
DynaProperty[] properties)
Construct a new LazyDynaMap with the specified name and properties. |
|
LazyDynaMap(java.lang.String name,
java.util.Map values)
Construct a new LazyDynaMap with the specified name and Map. |
|
| Method Summary | |
protected void |
add(DynaProperty property)
Add a new dynamic property. |
void |
add(java.lang.String name)
Add a new dynamic property with no restrictions on data type, readability, or writeability. |
void |
add(java.lang.String name,
java.lang.Class type)
Add a new dynamic property with the specified data type, but with no restrictions on readability or writeability. |
void |
add(java.lang.String name,
java.lang.Class type,
boolean readable,
boolean writeable)
Add a new dynamic property with the specified data type, readability, and writeability. |
DynaProperty[] |
getDynaProperties()
Return an array of ProperyDescriptors for the properties
currently defined in this DynaClass. |
DynaProperty |
getDynaProperty(java.lang.String name)
Return a property descriptor for the specified property. |
java.lang.String |
getName()
Return the name of this DynaClass (analogous to the getName() method of java.lang.Class
|
protected boolean |
isDynaProperty(java.lang.String name)
Indicate whether a property actually exists. |
boolean |
isRestricted()
Is this DynaClass currently restricted. |
boolean |
isReturnNull()
Should this DynaClass return a null from
the getDynaProperty(name) method if the property
doesn't exist. |
DynaBean |
newInstance()
Instantiate and return a new DynaBean instance, associated with this DynaClass. |
void |
remove(java.lang.String name)
Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class. |
void |
set(java.lang.String name,
java.lang.Object value)
Set the value of a simple property with the specified name. |
void |
setMap(java.util.Map values)
Set the Map backing this DynaBean |
void |
setRestricted(boolean restricted)
Set whether this DynaClass is currently restricted. |
void |
setReturnNull(boolean returnNull)
Set whether this DynaClass should return a null from
the getDynaProperty(name) method if the property
doesn't exist. |
| Methods inherited from class org.apache.commons.beanutils.LazyDynaBean |
contains, createDynaBeanProperty, createIndexedProperty, createMappedProperty, createNumberProperty, createOtherProperty, createPrimitiveProperty, createProperty, defaultIndexedProperty, defaultMappedProperty, get, get, get, getDynaClass, getMap, growIndexedProperty, isAssignable, newMap, remove, set, set, size |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
name
protected java.lang.String name
- The name of this DynaClass (analogous to the
getName()method ofjava.lang.Class).
restricted
protected boolean restricted
- Controls whether changes to this DynaClass's properties are allowed.
returnNull
protected boolean returnNull
Controls whether the
getDynaProperty()method returns null if a property doesn't exist - or creates a new one.Default is
false.
| Constructor Detail |
LazyDynaMap
public LazyDynaMap()
- Default Constructor.
LazyDynaMap
public LazyDynaMap(java.lang.String name)
- Construct a new
LazyDynaMapwith the specified name.
LazyDynaMap
public LazyDynaMap(java.util.Map values)
- Construct a new
LazyDynaMapwith the specifiedMap.
LazyDynaMap
public LazyDynaMap(java.lang.String name, java.util.Map values)
- Construct a new
LazyDynaMapwith the specified name andMap.
LazyDynaMap
public LazyDynaMap(DynaProperty[] properties)
- Construct a new
LazyDynaMapwith the specified properties.
LazyDynaMap
public LazyDynaMap(java.lang.String name, DynaProperty[] properties)
- Construct a new
LazyDynaMapwith the specified name and properties.
LazyDynaMap
public LazyDynaMap(DynaClass dynaClass)
- Construct a new
LazyDynaMapbased on an exisiting DynaClass
| Method Detail |
setMap
public void setMap(java.util.Map values)
- Set the Map backing this
DynaBean
set
public void set(java.lang.String name, java.lang.Object value)
- Set the value of a simple property with the specified name.
- Specified by:
setin interfaceDynaBean- Overrides:
setin classLazyDynaBean
getName
public java.lang.String getName()
- Return the name of this DynaClass (analogous to the
getName()method ofjava.lang.Class
getDynaProperty
public DynaProperty getDynaProperty(java.lang.String name)
Return a property descriptor for the specified property.
If the property is not found and the
returnNullindicator istrue, this method always returnsnull.If the property is not found and the
returnNullindicator isfalsea new property descriptor is created and returned (although its not actually added to the DynaClass's properties). This is the default beahviour.The reason for not returning a
nullproperty descriptor is thatBeanUtilsuses this method to check if a property exists before trying to set it - since these Map implementations automatically add any new properties when they are set, returningnullfrom this method would defeat their purpose.- Specified by:
getDynaPropertyin interfaceDynaClass
getDynaProperties
public DynaProperty[] getDynaProperties()
Return an array of
ProperyDescriptorsfor the properties currently defined in this DynaClass. If no properties are defined, a zero-length array will be returned.FIXME - Should we really be implementing
getBeanInfo()instead, which returns property descriptors and a bunch of other stuff?- Specified by:
getDynaPropertiesin interfaceDynaClass
newInstance
public DynaBean newInstance()
- Instantiate and return a new DynaBean instance, associated
with this DynaClass.
- Specified by:
newInstancein interfaceDynaClass
isRestricted
public boolean isRestricted()
Is this DynaClass currently restricted.
If restricted, no changes to the existing registration of property names, data types, readability, or writeability are allowed.
- Specified by:
isRestrictedin interfaceMutableDynaClass
setRestricted
public void setRestricted(boolean restricted)
Set whether this DynaClass is currently restricted.
If restricted, no changes to the existing registration of property names, data types, readability, or writeability are allowed.
- Specified by:
setRestrictedin interfaceMutableDynaClass
add
public void add(java.lang.String name)
- Add a new dynamic property with no restrictions on data type,
readability, or writeability.
- Specified by:
addin interfaceMutableDynaClass
add
public void add(java.lang.String name, java.lang.Class type)
- Add a new dynamic property with the specified data type, but with
no restrictions on readability or writeability.
- Specified by:
addin interfaceMutableDynaClass
add
public void add(java.lang.String name, java.lang.Class type, boolean readable, boolean writeable)
Add a new dynamic property with the specified data type, readability, and writeability.
N.B.Support for readable/writeable properties has not been implemented and this method always throws a
UnsupportedOperationException.I'm not sure the intention of the original authors for this method, but it seems to me that readable/writable should be attributes of the
DynaPropertyclass (which they are not) and is the reason this method has not been implemented.- Specified by:
addin interfaceMutableDynaClass
add
protected void add(DynaProperty property)
- Add a new dynamic property.
remove
public void remove(java.lang.String name)
- Remove the specified dynamic property, and any associated data type,
readability, and writeability, from this dynamic class.
NOTE - This does NOT cause any
corresponding property values to be removed from DynaBean instances
associated with this DynaClass.
- Specified by:
removein interfaceMutableDynaClass
isReturnNull
public boolean isReturnNull()
- Should this DynaClass return a
nullfrom thegetDynaProperty(name)method if the property doesn't exist.
setReturnNull
public void setReturnNull(boolean returnNull)
- Set whether this DynaClass should return a
nullfrom thegetDynaProperty(name)method if the property doesn't exist.
isDynaProperty
protected boolean isDynaProperty(java.lang.String name)
Indicate whether a property actually exists.
N.B. Using
getDynaProperty(name) == nulldoesn't work in this implementation because that method might return a DynaProperty if it doesn't exist (depending on thereturnNullindicator).- Overrides:
isDynaPropertyin classLazyDynaBean
|
|||||||||
| Home >> All >> org >> apache >> commons >> [ beanutils overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC