@java.lang.SuppressWarnings({"unchecked","rawtypes"}) @groovy.transform.CompileStatic public class LazyMetaPropertyMap extends java.lang.Object implements java.util.Map
A map implementation that reads an objects properties lazily using Groovy's MetaClass.
Constructor and description |
---|
LazyMetaPropertyMap
(java.lang.Object o) Constructs the map |
Type Params | Return Type | Name and description |
---|---|---|
|
public void |
clear()
|
|
public boolean |
containsKey(java.lang.Object propertyName) {@inheritDoc} |
|
public boolean |
containsValue(java.lang.Object o) Checks whether the specified value is contained within the Map. |
|
public java.util.Set<groovy.util.MapEntry> |
entrySet() |
|
public boolean |
equals(java.lang.Object o) |
|
public java.lang.Object |
get(java.lang.Object propertyName) Obtains the value of an object's properties on demand using Groovy's MOP. |
|
public java.lang.Object |
getInstance() Returns the wrapped instance. |
|
public int |
hashCode() |
|
public boolean |
isEmpty() {@inheritDoc} |
|
public java.util.Set<java.lang.String> |
keySet() |
|
public java.lang.Object |
put(java.lang.Object propertyName, java.lang.Object propertyValue) |
|
public void |
putAll(java.util.Map map) |
|
public java.lang.Object |
remove(java.lang.Object o)
|
|
public int |
size() {@inheritDoc} |
|
public java.util.Collection<java.lang.Object> |
values() |
Methods inherited from class | Name |
---|---|
class java.lang.Object |
java.lang.Object#wait(long, int), java.lang.Object#wait(long), java.lang.Object#wait(), java.lang.Object#equals(java.lang.Object), java.lang.Object#toString(), java.lang.Object#hashCode(), java.lang.Object#getClass(), java.lang.Object#notify(), java.lang.Object#notifyAll() |
Constructs the map
o
- The object to inspect{@inheritDoc}
Checks whether the specified value is contained within the Map. Note that because this implementation lazily initialises property values the behaviour may not be consistent with the actual values of the contained object unless they have already been initialised by calling get(Object)
Obtains the value of an object's properties on demand using Groovy's MOP.
propertyName
- The name of the propertyReturns the wrapped instance.
{@inheritDoc}
{@inheritDoc}