Class LazyDynaMap
- java.lang.Object
-
- org.apache.commons.beanutils.LazyDynaBean
-
- org.apache.commons.beanutils.LazyDynaMap
-
- All Implemented Interfaces:
java.io.Serializable,DynaBean,DynaClass,MutableDynaClass
public class LazyDynaMap extends LazyDynaBean implements MutableDynaClass
Provides a light weight
DynaBeanfacade to aMapwith lazy map/list processing.Its a light weight
DynaBeanimplementation because there is no actualDynaClassassociated with thisDynaBean- in fact it implements theDynaClassinterface itself providing pseudo DynaClass behavior from the actual values stored in theMap.As well providing rhe standard
DynaBeanaccess to theMap's properties this class also provides the usual Lazy behavior:- 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
MutableDynaClassinterface.MutableDynaClasshave a facility to restrict theDynaClassso that its properties cannot be modified. If theMutableDynaClassis restricted then calling any of theset()methods for a property which doesn't exist will result in aIllegalArgumentExceptionbeing thrown.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.StringnameThe name of this DynaClass (analogous to thegetName()method ofjava.lang.Class).protected booleanrestrictedControls whether changes to this DynaClass's properties are allowed.protected booleanreturnNullControls whether thegetDynaProperty()method returns null if a property doesn't exist - or creates a new one.private static longserialVersionUID-
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
Constructors Constructor Description LazyDynaMap()Constructs a new instance.LazyDynaMap(java.lang.String name)Construct a newLazyDynaMapwith the specified name.LazyDynaMap(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> values)Construct a newLazyDynaMapwith the specified name andMap.LazyDynaMap(java.lang.String name, DynaProperty[] properties)Construct a newLazyDynaMapwith the specified name and properties.LazyDynaMap(java.util.Map<java.lang.String,java.lang.Object> values)Construct a newLazyDynaMapwith the specifiedMap.LazyDynaMap(DynaClass dynaClass)Construct a newLazyDynaMapbased on an exisiting DynaClassLazyDynaMap(DynaProperty[] properties)Construct a newLazyDynaMapwith the specified properties.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidadd(java.lang.String name)Add a new dynamic property with no restrictions on data type, readability, or writeability.voidadd(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.voidadd(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.protected voidadd(DynaProperty property)Add a new dynamic property.DynaProperty[]getDynaProperties()Return an array ofProperyDescriptorsfor the properties currently defined in this DynaClass.DynaPropertygetDynaProperty(java.lang.String name)Return a property descriptor for the specified property.java.util.Map<java.lang.String,java.lang.Object>getMap()Return the underlying Map backing thisDynaBeanjava.lang.StringgetName()Return the name of this DynaClass (analogous to thegetName()method ofjava.lang.Class)protected booleanisDynaProperty(java.lang.String name)Indicate whether a property actually exists.booleanisRestricted()Is this DynaClass currently restricted.booleanisReturnNull()Should this DynaClass return anullfrom thegetDynaProperty(name)method if the property doesn't exist.DynaBeannewInstance()Instantiate and return a new DynaBean instance, associated with this DynaClass.voidremove(java.lang.String name)Remove the specified dynamic property, and any associated data type, readability, and writeability, from this dynamic class.voidset(java.lang.String name, java.lang.Object value)Set the value of a simple property with the specified name.voidsetMap(java.util.Map<java.lang.String,java.lang.Object> values)Set the Map backing thisDynaBeanvoidsetRestricted(boolean restricted)Set whether this DynaClass is currently restricted.voidsetReturnNull(boolean returnNull)Set whether this DynaClass should return anullfrom thegetDynaProperty(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, growIndexedProperty, isAssignable, newMap, remove, set, set, size
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
name
protected java.lang.String name
The name of this DynaClass (analogous to thegetName()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()
Constructs a new instance.
-
LazyDynaMap
public LazyDynaMap(DynaClass dynaClass)
Construct a newLazyDynaMapbased on an exisiting DynaClass- Parameters:
dynaClass- DynaClass to copy the name and properties from
-
LazyDynaMap
public LazyDynaMap(DynaProperty[] properties)
Construct a newLazyDynaMapwith the specified properties.- Parameters:
properties- Property descriptors for the supported properties
-
LazyDynaMap
public LazyDynaMap(java.util.Map<java.lang.String,java.lang.Object> values)
Construct a newLazyDynaMapwith the specifiedMap.- Parameters:
values- The Map backing thisLazyDynaMap
-
LazyDynaMap
public LazyDynaMap(java.lang.String name)
Construct a newLazyDynaMapwith the specified name.- Parameters:
name- Name of this DynaBean class
-
LazyDynaMap
public LazyDynaMap(java.lang.String name, DynaProperty[] properties)Construct a newLazyDynaMapwith the specified name and properties.- Parameters:
name- Name of this DynaBean classproperties- Property descriptors for the supported properties
-
LazyDynaMap
public LazyDynaMap(java.lang.String name, java.util.Map<java.lang.String,java.lang.Object> values)Construct a newLazyDynaMapwith the specified name andMap.- Parameters:
name- Name of this DynaBean classvalues- The Map backing thisLazyDynaMap
-
-
Method Detail
-
add
protected void add(DynaProperty property)
Add a new dynamic property.- Parameters:
property- Property the new dynamic property to add.- Throws:
java.lang.IllegalArgumentException- if name is null
-
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- Parameters:
name- Name of the new dynamic property- Throws:
java.lang.IllegalArgumentException- if name is null
-
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- Parameters:
name- Name of the new dynamic propertytype- Data type of the new dynamic property (null for no restrictions)- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no new properties can be added
-
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- Parameters:
name- Name of the new dynamic propertytype- Data type of the new dynamic property (null for no restrictions)readable- Set totrueif this property value should be readablewriteable- Set totrueif this property value should be writeable- Throws:
java.lang.UnsupportedOperationException- anytime this method is called
-
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- Returns:
- the set of properties for this DynaClass
-
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- Parameters:
name- Name of the dynamic property for which a descriptor is requested- Returns:
- The descriptor for the specified property
- Throws:
java.lang.IllegalArgumentException- if no property name is specified
-
getMap
public java.util.Map<java.lang.String,java.lang.Object> getMap()
Return the underlying Map backing thisDynaBean- Overrides:
getMapin classLazyDynaBean- Returns:
- the underlying Map
- Since:
- 1.8.0
-
getName
public java.lang.String getName()
Return the name of this DynaClass (analogous to thegetName()method ofjava.lang.Class)
-
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- Parameters:
name- Name of the dynamic property- Returns:
trueif the property exists, otherwisefalse- Throws:
java.lang.IllegalArgumentException- if no property name is specified
-
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- Returns:
trueif this MutableDynaClassis restricted, otherwisefalse
-
isReturnNull
public boolean isReturnNull()
Should this DynaClass return anullfrom thegetDynaProperty(name)method if the property doesn't exist.- Returns:
trueif anullDynaPropertyshould be returned if the property doesn't exist, otherwisefalseif a newDynaPropertyshould be created.
-
newInstance
public DynaBean newInstance()
Instantiate and return a new DynaBean instance, associated with this DynaClass.- Specified by:
newInstancein interfaceDynaClass- Returns:
- A new
DynaBeaninstance
-
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- Parameters:
name- Name of the dynamic property to remove- Throws:
java.lang.IllegalArgumentException- if name is nulljava.lang.IllegalStateException- if this DynaClass is currently restricted, so no properties can be removed
-
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- Parameters:
name- Name of the property whose value is to be setvalue- Value to which this property is to be set
-
setMap
public void setMap(java.util.Map<java.lang.String,java.lang.Object> values)
Set the Map backing thisDynaBean- Parameters:
values- The new Map of values
-
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- Parameters:
restricted- The new restricted state
-
setReturnNull
public void setReturnNull(boolean returnNull)
Set whether this DynaClass should return anullfrom thegetDynaProperty(name)method if the property doesn't exist.- Parameters:
returnNull-trueif anullDynaPropertyshould be returned if the property doesn't exist, otherwisefalseif a newDynaPropertyshould be created.
-
-