|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap
org.datanucleus.store.types.sco.simple.Map
org.datanucleus.store.types.sco.backed.Map
public class Map
A mutable second-class Map object. Uses a "delegate" as a local store for the Map. Uses a "backing store" (SetStore) to represent the datastore. The "delegate" is updated with the "backing store" information at necessary intervals.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class java.util.AbstractMap |
|---|
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K,V> |
| Nested classes/interfaces inherited from interface java.util.Map |
|---|
Map.Entry<K,V> |
| Field Summary | |
|---|---|
protected boolean |
allowNulls
|
protected MapStore |
backingStore
|
protected boolean |
isCacheLoaded
|
protected OperationQueue<MapStore> |
operationQueue
|
protected boolean |
queued
|
protected boolean |
useCache
|
| Fields inherited from class org.datanucleus.store.types.sco.simple.Map |
|---|
delegate, fieldName, fieldNumber, LOCALISER, ownerSM |
| Constructor Summary | |
|---|---|
Map(ObjectProvider ownerSM,
String fieldName)
Constructor, using the StateManager of the "owner" and the field name. |
|
| Method Summary | |
|---|---|
protected void |
addQueuedOperation(QueuedOperation<? super MapStore> op)
Convenience method to add a queued operation to the operations we perform at commit. |
void |
clear()
Method to clear the Map. |
Object |
clone()
Creates and returns a copy of this object. |
boolean |
containsKey(Object key)
Utility to check if a key is contained in the Map. |
boolean |
containsValue(Object value)
Utility to check if a value is contained in the Map. |
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. |
void |
flush()
Method to flush the changes to the datastore when operating in queued mode. |
Object |
get(Object key)
Accessor for the value stored against a key. |
Object |
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. |
void |
initialise(Object o,
boolean forInsert,
boolean forUpdate)
Method to initialise the SCO from an existing 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. |
protected void |
loadFromStore()
Method to load all elements from the "backing store" where appropriate. |
Object |
put(Object key,
Object value)
Method to add a value to the Map. |
void |
putAll(Map m)
Method to add a Map of values to this map. |
Object |
remove(Object key)
Method to remove a value from the Map. |
int |
size()
Method to return the size of the Map. |
String |
toString()
Method to return a string form of this Map. |
void |
unsetOwner()
Method to unset the owner and field information. |
void |
updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue)
Method to update an embedded key in this map. |
void |
updateEmbeddedValue(Object value,
int fieldNumber,
Object newValue)
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. |
| Methods inherited from class org.datanucleus.store.types.sco.simple.Map |
|---|
attachCopy, detachCopy, getFieldName, getOwner, makeDirty |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Field Detail |
|---|
protected transient boolean allowNulls
protected transient MapStore backingStore
protected transient boolean useCache
protected transient boolean isCacheLoaded
protected transient boolean queued
protected transient OperationQueue<MapStore> operationQueue
| Constructor Detail |
|---|
public Map(ObjectProvider ownerSM,
String fieldName)
ownerSM - The owner StateManagerfieldName - The name of the field of the SCO.| Method Detail |
|---|
public void initialise(Object o,
boolean forInsert,
boolean forUpdate)
initialise in interface SCOinitialise in class Mapo - The object to set fromforInsert - Whether the object needs inserting in the datastore with this valueforUpdate - Whether to update the datastore with this valuepublic void initialise()
initialise in interface SCOinitialise in class Mappublic Object getValue()
getValue in interface SCOgetValue in class Mappublic void load()
load in interface SCOContainerload in class Mappublic boolean isLoaded()
isLoaded in interface SCOContainerisLoaded in class Mapprotected void loadFromStore()
public void flush()
flush in interface SCOContainerflush in class Mapprotected void addQueuedOperation(QueuedOperation<? super MapStore> op)
op - The operation
public void updateEmbeddedKey(Object key,
int fieldNumber,
Object newValue)
updateEmbeddedKey in interface SCOMapupdateEmbeddedKey in class Mapkey - The keyfieldNumber - Number of field in the keynewValue - New value for this field
public void updateEmbeddedValue(Object value,
int fieldNumber,
Object newValue)
updateEmbeddedValue in interface SCOMapupdateEmbeddedValue in class Mapvalue - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldpublic void unsetOwner()
unsetOwner in interface SCOunsetOwner in class Mappublic Object clone()
Mutable second-class Objects are required to provide a public clone method in order to allow for copying PersistenceCapable objects. In contrast to Object.clone(), this method must not throw a CloneNotSupportedException.
clone in interface SCOclone in class Mappublic boolean containsKey(Object key)
containsKey in interface MapcontainsKey in class Mapkey - The key to check
public boolean containsValue(Object value)
containsValue in interface MapcontainsValue in class Mapvalue - The value to check
public Set entrySet()
entrySet in interface MapentrySet in class Mappublic boolean equals(Object o)
equals in interface Mapequals in class Mapo - The map to compare against.
public Object get(Object key)
get in interface Mapget in class Mapkey - The key
public int hashCode()
hashCode in interface MaphashCode in class Mappublic boolean isEmpty()
isEmpty in interface MapisEmpty in class Mappublic Set keySet()
keySet in interface MapkeySet in class Mappublic int size()
size in interface Mapsize in class Mappublic Collection values()
values in interface Mapvalues in class Mappublic String toString()
toString in class AbstractMappublic void clear()
clear in interface Mapclear in class Map
public Object put(Object key,
Object value)
put in interface Mapput in class Mapkey - The key for the value.value - The value
public void putAll(Map m)
putAll in interface MapputAll in class Mapm - The Map to addpublic Object remove(Object key)
remove in interface Mapremove in class Mapkey - The key for the value.
protected Object writeReplace()
throws ObjectStreamException
writeReplace in class MapObjectStreamException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||