Class LinkedHashMap<K,V>
java.lang.Object
java.util.AbstractMap<K,V>
java.util.HashMap<K,V>
java.util.LinkedHashMap<K,V>
org.datanucleus.store.types.wrappers.LinkedHashMap<K,V>
org.datanucleus.store.types.wrappers.backed.LinkedHashMap<K,V>
- All Implemented Interfaces:
Serializable, Cloneable, Map<K,V>, SCO<LinkedHashMap<K, V>>, SCOContainer<LinkedHashMap<K, V>>, SCOMap<LinkedHashMap<K, V>, K, V>, BackedSCO
A mutable second-class LinkedHashMap object. Backed by a MapStore object.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class AbstractMap
AbstractMap.SimpleEntry<K,V>, AbstractMap.SimpleImmutableEntry<K, V> -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanprotected booleanprotected booleanFields inherited from class LinkedHashMap
delegate, ownerMmd, ownerSM -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Method to clear the LinkedHashMap.clone()Creates and returns a copy of this object.booleancontainsKey(Object key) Method to return if the map contains this keybooleancontainsValue(Object value) Method to return if the map contains this value.entrySet()Accessor for the set of entries in the Map.booleanMethod to check the equality of this map, and another.voidforEach(BiConsumer<? super K, ? super V> action) Accessor for the value stored against a key.getValue()Accessor for the unwrapped value that we are wrapping.inthashCode()Method to generate a hashcode for this Map.voidMethod to initialise the SCO for use.voidMethod to initialise the SCO from an existing value.voidinitialise(LinkedHashMap 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.booleanisEmpty()Method to return if the Map is empty.booleanisLoaded()Method to return if the SCO has its contents loaded.keySet()Accessor for the set of keys in the Map.voidload()Method to effect the load of the data in the SCO.protected voidMethod to load all elements from the "backing store" where appropriate.Method to add a value against a key to the LinkedHashMap.voidMethod to add the specified Map's values under their keys here.Method to remove the value for a key from the LinkedHashMap.intsize()Method to return the size of the Map.voidMethod 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.values()Accessor for the set of values in the Map.protected ObjectThe writeReplace method is called when ObjectOutputStream is preparing to write the object to the stream.Methods inherited from class LinkedHashMap
attachCopy, detachCopy, getFieldName, getOwner, makeDirty, setValueMethods inherited from class LinkedHashMap
getOrDefault, removeEldestEntry, replaceAllMethods inherited from class HashMap
compute, computeIfAbsent, computeIfPresent, merge, putIfAbsent, remove, replace, replaceMethods inherited from class AbstractMap
toStringMethods inherited from interface Map
compute, computeIfAbsent, computeIfPresent, merge, putIfAbsent, remove, replace, replace
-
Field Details
-
allowNulls
protected transient boolean allowNulls -
backingStore
-
useCache
protected transient boolean useCache -
isCacheLoaded
protected transient boolean isCacheLoaded
-
-
Constructor Details
-
LinkedHashMap
Constructor- Parameters:
sm- the owner of this Mapmmd- Metadata for the member
-
-
Method Details
-
initialise
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>- Overrides:
initialisein classLinkedHashMap<K,V> - Parameters:
newValue- New value (to wrap)oldValue- Old value (to use in deciding what needs deleting etc)
-
initialise
Method to initialise the SCO from an existing value.- Specified by:
initialisein interfaceSCO<K>- Overrides:
initialisein classLinkedHashMap<K,V> - Parameters:
m- Object to set value using.
-
initialise
public void initialise()Method to initialise the SCO for use.- Specified by:
initialisein interfaceSCO<K>- Overrides:
initialisein classLinkedHashMap<K,V>
-
getValue
Accessor for the unwrapped value that we are wrapping. -
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>- Overrides:
loadin classLinkedHashMap<K,V>
-
isLoaded
public boolean isLoaded()Method to return if the SCO has its contents loaded. If the SCO doesn't support lazy loading will just return true.- Specified by:
isLoadedin interfaceBackedSCO- Specified by:
isLoadedin interfaceSCOContainer<K>- Overrides:
isLoadedin classLinkedHashMap<K,V> - Returns:
- Whether it is loaded
-
loadFromStore
protected void loadFromStore()Method to load all elements from the "backing store" where appropriate. -
getBackingStore
- Specified by:
getBackingStorein interfaceBackedSCO
-
updateEmbeddedKey
Method to update an embedded key in this map.- Specified by:
updateEmbeddedKeyin interfaceSCOMap<LinkedHashMap<K,V>, K, V> - Overrides:
updateEmbeddedKeyin classLinkedHashMap<K,V> - Parameters:
key- The keyfieldNumber- Number of field in the keynewValue- New value for this fieldmakeDirty- Whether to make the SCO field dirty.
-
updateEmbeddedValue
Method to update an embedded value in this map.- Specified by:
updateEmbeddedValuein interfaceSCOMap<LinkedHashMap<K,V>, K, V> - Overrides:
updateEmbeddedValuein classLinkedHashMap<K,V> - Parameters:
value- The valuefieldNumber- Number of field in the valuenewValue- New value for this fieldmakeDirty- Whether to make the SCO field dirty.
-
unsetOwner
public void unsetOwner()Method to unset the owner and field details.- Specified by:
unsetOwnerin interfaceSCO<K>- Overrides:
unsetOwnerin classLinkedHashMap<K,V>
-
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.
-
containsKey
Method to return if the map contains this key- Specified by:
containsKeyin interfaceMap<K,V> - Overrides:
containsKeyin classLinkedHashMap<K,V> - Parameters:
key- The key- Returns:
- Whether it is contained
-
containsValue
Method to return if the map contains this value.- Specified by:
containsValuein interfaceMap<K,V> - Overrides:
containsValuein classLinkedHashMap<K,V> - Parameters:
value- The value- Returns:
- Whether it is contained
-
entrySet
-
equals
-
forEach
-
get
-
hashCode
-
isEmpty
-
keySet
-
size
-
values
Accessor for the set of values in the Map. -
clear
-
put
-
putAll
-
remove
-
writeReplace
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.- Overrides:
writeReplacein classLinkedHashMap<K,V> - Returns:
- the replaced object
- Throws:
ObjectStreamException- if an error occurs
-