Class TreeMap<K,V>
- java.lang.Object
-
- java.util.AbstractMap<K,V>
-
- java.util.TreeMap<K,V>
-
- org.datanucleus.store.types.wrappers.TreeMap<K,V>
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<K,V>,NavigableMap<K,V>,SortedMap<K,V>,SCO<TreeMap<K,V>>,SCOContainer<TreeMap<K,V>>,SCOMap<TreeMap<K,V>,K,V>
- Direct Known Subclasses:
TreeMap
public class TreeMap<K,V> extends TreeMap<K,V> implements SCOMap<TreeMap<K,V>,K,V>
A mutable second-class TreeMap object. This is the simplified form that intercepts mutators and marks the field as dirty. It also handles cascade-delete triggering for persistable elements.- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.AbstractMap
AbstractMap.SimpleEntry<K extends Object,V extends Object>, AbstractMap.SimpleImmutableEntry<K extends Object,V extends Object>
-
-
Field Summary
Fields Modifier and Type Field Description protected TreeMap<K,V>delegateThe internal "delegate".protected AbstractMemberMetaDataownerMmdprotected ObjectProviderownerOP
-
Constructor Summary
Constructors Constructor Description TreeMap(ObjectProvider ownerOP, AbstractMemberMetaData mmd)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidattachCopy(TreeMap value)Method to return an attached copy of the passed (detached) value.voidclear()Method to clear the TreeMap.Objectclone()Creates and returns a copy of this object.Comparatorcomparator()Accessor for the comparator.booleancontainsKey(Object key)Method to return if the map contains this keybooleancontainsValue(Object value)Method to return if the map contains this value.TreeMapdetachCopy(FetchPlanState state)Method to return a detached copy of the container.SetentrySet()Accessor for the set of entries in the Map.booleanequals(Object o)Method to check the equality of this map, and another.KfirstKey()Accessor for the first key in the sorted map.voidforEach(java.util.function.BiConsumer<? super K,? super V> action)Vget(Object key)Accessor for the value stored against a key.StringgetFieldName()Accessor for the field name that this TreeMap relates to.ObjectgetOwner()Accessor for the owner that this TreeMap relates to.TreeMapgetValue()Accessor for the unwrapped value that we are wrapping.inthashCode()Method to generate a hashcode for this Map.SortedMapheadMap(K toKey)Method to retrieve the head of the map up to the specified key.voidinitialise()Method to initialise the SCO for use, and allowing the SCO to be loaded from the datastore (when we have a backing store).voidinitialise(TreeMap m)Method to initialise the SCO for use with the provided initial value.voidinitialise(TreeMap 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.protected voidinitialiseDelegate()Convenience method to set up the delegate respecting any comparator specified in MetaData.booleanisEmpty()Method to return if the Map is empty.booleanisLoaded()Method to return if the SCO has its contents loaded.SetkeySet()Accessor for the set of keys in the Map.KlastKey()Accessor for the last key in the sorted map.voidload()Method to effect the load of the data in the SCO.voidmakeDirty()Utility to mark the object as dirtyVput(K key, V value)Method to add a value against a key to the TreeMap.voidputAll(Map m)Method to add the specified Map's values under their keys here.Vremove(Object key)Method to remove the value for a key from the TreeMap.voidsetValue(TreeMap value)Method to change the delegate value this wraps (to save recreating the wrapper).intsize()Method to return the size of the Map.SortedMapsubMap(K fromKey, K toKey)Method to retrieve the subset of the map between the specified keys.SortedMaptailMap(K fromKey)Method to retrieve the part of the map after the specified key.voidunsetOwner()Method to unset the owner and field details.voidupdateEmbeddedKey(K key, int fieldNumber, Object newValue, boolean makeDirty)Method to update an embedded key in this map.voidupdateEmbeddedValue(V value, int fieldNumber, Object newValue, boolean makeDirty)Method to update an embedded value in this map.Collectionvalues()Accessor for the set of values in the Map.protected ObjectwriteReplace()The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream.-
Methods inherited from class java.util.TreeMap
ceilingEntry, ceilingKey, descendingKeySet, descendingMap, firstEntry, floorEntry, floorKey, headMap, higherEntry, higherKey, lastEntry, lowerEntry, lowerKey, navigableKeySet, pollFirstEntry, pollLastEntry, replace, replace, replaceAll, subMap, tailMap
-
Methods inherited from class java.util.AbstractMap
toString
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Map
compute, computeIfAbsent, computeIfPresent, getOrDefault, merge, putIfAbsent, remove
-
-
-
-
Field Detail
-
ownerOP
protected transient ObjectProvider ownerOP
-
ownerMmd
protected transient AbstractMemberMetaData ownerMmd
-
-
Constructor Detail
-
TreeMap
public TreeMap(ObjectProvider ownerOP, AbstractMemberMetaData mmd)
Constructor- Parameters:
ownerOP- the owner ObjectProvidermmd- Metadata for the member
-
-
Method Detail
-
initialise
public void initialise(TreeMap newValue, Object oldValue)
Description copied from interface:SCOMethod 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. Note that oldValue is marked as Object since for cases where the member type is Collection the newValue could be, for example, ArrayList, and the oldValue of type Collection (representing null).- Specified by:
initialisein interfaceSCO<K>- Parameters:
newValue- New value (to wrap)oldValue- Old value (to use in deciding what needs deleting etc)
-
initialise
public void initialise(TreeMap m)
Description copied from interface:SCOMethod to initialise the SCO for use with the provided initial value. This is used, for example, when retrieving the field from the datastore and setting it in the persistable object.- Specified by:
initialisein interfaceSCO<K>- Parameters:
m- the object from which to copy the value.
-
initialise
public void initialise()
Description copied from interface:SCOMethod to initialise the SCO for use, and allowing the SCO to be loaded from the datastore (when we have a backing store). This can be utilised to perform any eager loading of information from the datastore.- Specified by:
initialisein interfaceSCO<K>
-
initialiseDelegate
protected void initialiseDelegate()
Convenience method to set up the delegate respecting any comparator specified in MetaData.
-
getValue
public TreeMap getValue()
Accessor for the unwrapped value that we are wrapping.
-
setValue
public void setValue(TreeMap value)
Description copied from interface:SCOContainerMethod to change the delegate value this wraps (to save recreating the wrapper).- Specified by:
setValuein interfaceSCOContainer<K>- Parameters:
value- The new value
-
load
public void load()
Method to effect the load of the data in the SCO. Used when the SCO supports lazy-loading to tell it to load all now.- Specified by:
loadin interfaceSCOContainer<K>
-
isLoaded
public boolean isLoaded()
Method to return if the SCO has its contents loaded. Returns true.- Specified by:
isLoadedin interfaceSCOContainer<K>- Returns:
- Whether it is loaded
-
updateEmbeddedKey
public void updateEmbeddedKey(K key, int fieldNumber, Object newValue, boolean makeDirty)
Method to update an embedded key in this map.
-
updateEmbeddedValue
public void updateEmbeddedValue(V value, int fieldNumber, Object newValue, boolean makeDirty)
Method to update an embedded value in this map.
-
getFieldName
public String getFieldName()
Accessor for the field name that this TreeMap relates to.- Specified by:
getFieldNamein interfaceSCO<K>- Returns:
- The field name
-
getOwner
public Object getOwner()
Accessor for the owner that this TreeMap relates to.
-
unsetOwner
public void unsetOwner()
Method to unset the owner and field details.- Specified by:
unsetOwnerin interfaceSCO<K>
-
makeDirty
public void makeDirty()
Utility to mark the object as dirty
-
detachCopy
public TreeMap detachCopy(FetchPlanState state)
Method to return a detached copy of the container. Recurse sthrough the keys/values so that they are likewise detached.- Specified by:
detachCopyin interfaceSCO<K>- Parameters:
state- State for detachment process- Returns:
- The detached container
-
attachCopy
public void attachCopy(TreeMap value)
Method to return an attached copy of the passed (detached) value. The returned attached copy is a SCO wrapper. Goes through the existing keys/values in the store for this owner field and removes ones no longer present, and adds new keys/values. All keys/values in the (detached) value are attached.- Specified by:
attachCopyin interfaceSCO<K>- Parameters:
value- The new (map) value
-
clone
public Object clone()
Creates and returns a copy of this object.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.
-
comparator
public Comparator comparator()
Accessor for the comparator.- Specified by:
comparatorin interfaceSortedMap<K,V>- Overrides:
comparatorin classTreeMap<K,V>- Returns:
- The comparator
-
containsKey
public boolean containsKey(Object key)
Method to return if the map contains this key- Specified by:
containsKeyin interfaceMap<K,V>- Overrides:
containsKeyin classTreeMap<K,V>- Parameters:
key- The key- Returns:
- Whether it is contained
-
containsValue
public boolean containsValue(Object value)
Method to return if the map contains this value.- Specified by:
containsValuein interfaceMap<K,V>- Overrides:
containsValuein classTreeMap<K,V>- Parameters:
value- The value- Returns:
- Whether it is contained
-
entrySet
public Set entrySet()
Accessor for the set of entries in the Map.
-
equals
public boolean equals(Object o)
Method to check the equality of this map, and another.
-
firstKey
public K firstKey()
Accessor for the first key in the sorted map.
-
lastKey
public K lastKey()
Accessor for the last key in the sorted map.
-
headMap
public SortedMap headMap(K toKey)
Method to retrieve the head of the map up to the specified key.
-
subMap
public SortedMap subMap(K fromKey, K toKey)
Method to retrieve the subset of the map between the specified keys.
-
tailMap
public SortedMap tailMap(K fromKey)
Method to retrieve the part of the map after the specified key.
-
hashCode
public int hashCode()
Method to generate a hashcode for this Map.
-
isEmpty
public boolean isEmpty()
Method to return if the Map is empty.
-
keySet
public Set keySet()
Accessor for the set of keys in the Map.
-
size
public int size()
Method to return the size of the Map.
-
values
public Collection values()
Accessor for the set of values in the Map.
-
clear
public void clear()
Method to clear the TreeMap.
-
putAll
public void putAll(Map m)
Method to add the specified Map's values under their keys here.
-
writeReplace
protected Object writeReplace() throws ObjectStreamException
The writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream. The ObjectOutputStream checks whether the class defines the writeReplace method. If the method is defined, the writeReplace method is called to allow the object to designate its replacement in the stream. The object returned should be either of the same type as the object passed in or an object that when read and resolved will result in an object of a type that is compatible with all references to the object.- Returns:
- the replaced object
- Throws:
ObjectStreamException- if an error occurs
-
-