public class HashMap extends HashMap implements SCOMap<HashMap>
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V>| Modifier and Type | Field and Description |
|---|---|
protected HashMap |
delegate
The internal "delegate".
|
protected AbstractMemberMetaData |
ownerMmd |
protected ObjectProvider |
ownerOP |
| Constructor and Description |
|---|
HashMap(ObjectProvider ownerOP,
AbstractMemberMetaData mmd)
Constructor
|
| Modifier and Type | Method and Description |
|---|---|
void |
attachCopy(HashMap value)
Method to return an attached copy of the passed (detached) value.
|
void |
clear()
Method to clear the HashMap.
|
Object |
clone()
Creates and returns a copy of this object.
|
boolean |
containsKey(Object key)
Method to return if the map contains this key
|
boolean |
containsValue(Object value)
Method to return if the map contains this value.
|
HashMap |
detachCopy(FetchPlanState state)
Method to return a detached copy of the container.
|
Set |
entrySet()
Accessor for the set of entries in the Map.
|
boolean |
equals(Object o)
Method to check the equality of this map, and another.
|
Object |
get(Object key)
Accessor for the value stored against a key.
|
String |
getFieldName()
Accessor for the field name that this HashMap relates to.
|
Object |
getOwner()
Accessor for the owner that this HashMap relates to.
|
HashMap |
getValue()
Accessor for the unwrapped value that we are wrapping.
|
int |
hashCode()
Method to generate a hashcode for this Map.
|
void |
initialise()
Method to initialise the SCO for use, and allowing the SCO to be loaded from the datastore (when we have a backing store).
|
void |
initialise(HashMap m)
Method to initialise the SCO for use with the provided initial value.
|
void |
initialise(HashMap newValue,
Object oldValue)
Method to initialise the SCO for use, where replacing an old value with a new value such as when calling a setter field
passing in a new value.
|
boolean |
isEmpty()
Method to return if the Map is empty.
|
boolean |
isLoaded()
Method to return if the SCO has its contents loaded.
|
Set |
keySet()
Accessor for the set of keys in the Map.
|
void |
load()
Method to effect the load of the data in the SCO.
|
void |
makeDirty()
Utility to mark the object as dirty
|
Object |
put(Object key,
Object value)
Method to add a value against a key to the HashMap.
|
void |
putAll(Map m)
Method to add the specified Map's values under their keys here.
|
Object |
remove(Object key)
Method to remove the value for a key from the HashMap.
|
void |
setValue(HashMap value)
Method to change the delegate value this wraps (to save recreating the wrapper).
|
int |
size()
Method to return the size of the Map.
|
void |
unsetOwner()
Method to unset the owner and field details.
|
void |
updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue,
boolean makeDirty)
Method to update an embedded key in this map.
|
void |
updateEmbeddedValue(Object value,
int fieldNumber,
Object newValue,
boolean makeDirty)
Method to update an embedded value in this map.
|
Collection |
values()
Accessor for the set of values in the Map.
|
protected Object |
writeReplace()
The writeReplace method is called when ObjectOutputStream is preparing
to write the object to the stream.
|
compute, computeIfAbsent, computeIfPresent, forEach, getOrDefault, merge, putIfAbsent, remove, replace, replace, replaceAlltoStringprotected transient ObjectProvider ownerOP
protected transient AbstractMemberMetaData ownerMmd
protected HashMap delegate
public HashMap(ObjectProvider ownerOP, AbstractMemberMetaData mmd)
ownerOP - the owner ObjectProvidermmd - Metadata for the memberpublic void initialise(HashMap newValue, Object oldValue)
SCOinitialise in interface SCO<HashMap>newValue - New value (to wrap)oldValue - Old value (to use in deciding what needs deleting etc)public void initialise(HashMap m)
SCOinitialise in interface SCO<HashMap>m - the object from which to copy the value.public void initialise()
SCOinitialise in interface SCO<HashMap>public HashMap getValue()
public void setValue(HashMap value)
SCOContainersetValue in interface SCOContainer<HashMap>value - The new valuepublic void load()
load in interface SCOContainer<HashMap>public boolean isLoaded()
isLoaded in interface SCOContainer<HashMap>public void updateEmbeddedKey(Object key, int fieldNumber, Object newValue, boolean makeDirty)
updateEmbeddedKey in interface SCOMap<HashMap>key - The keyfieldNumber - Number of field in the keynewValue - New value for this fieldmakeDirty - Whether to make the SCO field dirty.public void updateEmbeddedValue(Object value, int fieldNumber, Object newValue, boolean makeDirty)
updateEmbeddedValue in interface SCOMap<HashMap>value - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldmakeDirty - Whether to make the SCO field dirty.public String getFieldName()
getFieldName in interface SCO<HashMap>public Object getOwner()
public void unsetOwner()
unsetOwner in interface SCO<HashMap>public void makeDirty()
public HashMap detachCopy(FetchPlanState state)
detachCopy in interface SCO<HashMap>state - State for detachment processpublic void attachCopy(HashMap value)
attachCopy in interface SCO<HashMap>value - The new (map) valuepublic Object clone()
Mutable second-class Objects are required to provide a public clone method in order to allow for copying persistable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
public boolean containsKey(Object key)
containsKey in interface MapcontainsKey in class HashMapkey - The keypublic boolean containsValue(Object value)
containsValue in interface MapcontainsValue in class HashMapvalue - The valuepublic Set entrySet()
public boolean equals(Object o)
equals in interface Mapequals in class AbstractMapo - The map to compare against.public int hashCode()
hashCode in interface MaphashCode in class AbstractMappublic boolean isEmpty()
public Set keySet()
public int size()
public Collection values()
public void clear()
public void putAll(Map m)
protected Object writeReplace() throws ObjectStreamException
ObjectStreamException - if an error occursCopyright © 2015. All rights reserved.