|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.util.AbstractMap<K,V>
java.util.TreeMap
org.datanucleus.store.types.sco.simple.TreeMap
org.datanucleus.store.types.sco.backed.TreeMap
public class TreeMap
A mutable second-class TreeMap object. Backed by a MapStore object.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class java.util.AbstractMap |
|---|
java.util.AbstractMap.SimpleEntry<K,V>, java.util.AbstractMap.SimpleImmutableEntry<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.TreeMap |
|---|
delegate, fieldName, fieldNumber, LOCALISER, owner, ownerSM |
| Constructor Summary | |
|---|---|
TreeMap(ObjectProvider ownerSM,
java.lang.String fieldName)
Constructor |
|
| 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 TreeMap. |
java.lang.Object |
clone()
Creates and returns a copy of this object. |
java.util.Comparator |
comparator()
Accessor for the comparator. |
boolean |
containsKey(java.lang.Object key)
Method to return if the map contains this key |
boolean |
containsValue(java.lang.Object value)
Method to return if the map contains this value. |
java.util.Set |
entrySet()
Accessor for the set of entries in the Map. |
boolean |
equals(java.lang.Object o)
Method to check the equality of this map, and another. |
java.lang.Object |
firstKey()
Accessor for the first key in the sorted map. |
void |
flush()
Method to flush the changes to the datastore when operating in queued mode. |
java.lang.Object |
get(java.lang.Object key)
Accessor for the value stored against a key. |
java.lang.Object |
getValue()
Accessor for the unwrapped value that we are wrapping. |
int |
hashCode()
Method to generate a hashcode for this Map. |
java.util.SortedMap |
headMap(java.lang.Object toKey)
Method to retrieve the head of the map up to the specified key. |
void |
initialise()
Method to initialise the SCO for use. |
void |
initialise(java.lang.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. |
java.util.Set |
keySet()
Accessor for the set of keys in the Map. |
java.lang.Object |
lastKey()
Accessor for the last key in the sorted 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. |
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Method to add a value against a key to the TreeMap. |
void |
putAll(java.util.Map m)
Method to add the specified Map's values under their keys here. |
java.lang.Object |
remove(java.lang.Object key)
Method to remove the value for a key from the TreeMap. |
int |
size()
Method to return the size of the Map. |
java.util.SortedMap |
subMap(java.lang.Object fromKey,
java.lang.Object toKey)
Method to retrieve the subset of the map between the specified keys. |
java.util.SortedMap |
tailMap(java.lang.Object fromKey)
Method to retrieve the part of the map after the specified key. |
void |
unsetOwner()
Method to unset the owner and field details. |
void |
updateEmbeddedKey(java.lang.Object key,
int fieldNumber,
java.lang.Object newValue)
Method to update an embedded key in this map. |
void |
updateEmbeddedValue(java.lang.Object value,
int fieldNumber,
java.lang.Object newValue)
Method to update an embedded value in this map. |
java.util.Collection |
values()
Accessor for the set of values in the Map. |
protected java.lang.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.TreeMap |
|---|
attachCopy, detachCopy, getFieldName, getOwner, initialiseDelegate, makeDirty |
| Methods inherited from class java.util.TreeMap |
|---|
ceilingEntry, ceilingKey, descendingKeySet, descendingMap, firstEntry, floorEntry, floorKey, headMap, higherEntry, higherKey, lastEntry, lowerEntry, lowerKey, navigableKeySet, pollFirstEntry, pollLastEntry, subMap, tailMap |
| Methods inherited from class java.util.AbstractMap |
|---|
toString |
| 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 TreeMap(ObjectProvider ownerSM,
java.lang.String fieldName)
ownerSM - the owner StateManagerfieldName - the field name| Method Detail |
|---|
public void initialise(java.lang.Object o,
boolean forInsert,
boolean forUpdate)
initialise in interface SCOinitialise in class TreeMapo - Object to set value using.forInsert - 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 TreeMappublic java.lang.Object getValue()
getValue in interface SCOgetValue in class TreeMappublic void load()
load in interface SCOContainerload in class TreeMappublic boolean isLoaded()
isLoaded in interface SCOContainerisLoaded in class TreeMapprotected void loadFromStore()
public void flush()
flush in interface SCOContainerflush in class TreeMapprotected void addQueuedOperation(QueuedOperation<? super MapStore> op)
op - The operation
public void updateEmbeddedKey(java.lang.Object key,
int fieldNumber,
java.lang.Object newValue)
updateEmbeddedKey in interface SCOMapupdateEmbeddedKey in class TreeMapkey - The keyfieldNumber - Number of field in the keynewValue - New value for this field
public void updateEmbeddedValue(java.lang.Object value,
int fieldNumber,
java.lang.Object newValue)
updateEmbeddedValue in interface SCOMapupdateEmbeddedValue in class TreeMapvalue - The valuefieldNumber - Number of field in the valuenewValue - New value for this fieldpublic void unsetOwner()
unsetOwner in interface SCOunsetOwner in class TreeMappublic java.lang.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 TreeMappublic java.util.Comparator comparator()
comparator in interface java.util.SortedMapcomparator in class TreeMappublic boolean containsKey(java.lang.Object key)
containsKey in interface java.util.MapcontainsKey in class TreeMapkey - The key
public boolean containsValue(java.lang.Object value)
containsValue in interface java.util.MapcontainsValue in class TreeMapvalue - The value
public java.util.Set entrySet()
entrySet in interface java.util.MapentrySet in interface java.util.SortedMapentrySet in class TreeMappublic boolean equals(java.lang.Object o)
equals in interface java.util.Mapequals in class TreeMapo - The map to compare against.
public java.lang.Object firstKey()
firstKey in interface java.util.SortedMapfirstKey in class TreeMappublic java.lang.Object lastKey()
lastKey in interface java.util.SortedMaplastKey in class TreeMappublic java.util.SortedMap headMap(java.lang.Object toKey)
headMap in interface java.util.NavigableMapheadMap in interface java.util.SortedMapheadMap in class TreeMaptoKey - the key to return up to.
public java.util.SortedMap subMap(java.lang.Object fromKey,
java.lang.Object toKey)
subMap in interface java.util.NavigableMapsubMap in interface java.util.SortedMapsubMap in class TreeMapfromKey - The start keytoKey - The end key
public java.util.SortedMap tailMap(java.lang.Object fromKey)
tailMap in interface java.util.NavigableMaptailMap in interface java.util.SortedMaptailMap in class TreeMapfromKey - The start key
public java.lang.Object get(java.lang.Object key)
get in interface java.util.Mapget in class TreeMapkey - The key
public int hashCode()
hashCode in interface java.util.MaphashCode in class TreeMappublic boolean isEmpty()
isEmpty in interface java.util.MapisEmpty in class TreeMappublic java.util.Set keySet()
keySet in interface java.util.MapkeySet in interface java.util.SortedMapkeySet in class TreeMappublic int size()
size in interface java.util.Mapsize in class TreeMappublic java.util.Collection values()
values in interface java.util.Mapvalues in interface java.util.SortedMapvalues in class TreeMappublic void clear()
clear in interface java.util.Mapclear in class TreeMap
public java.lang.Object put(java.lang.Object key,
java.lang.Object value)
put in interface java.util.Mapput in class TreeMapkey - The keyvalue - The value
public void putAll(java.util.Map m)
putAll in interface java.util.MapputAll in class TreeMapm - The mappublic java.lang.Object remove(java.lang.Object key)
remove in interface java.util.Mapremove in class TreeMapkey - The key to remove
protected java.lang.Object writeReplace()
throws java.io.ObjectStreamException
writeReplace in class TreeMapjava.io.ObjectStreamException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||