Class Hashtable<K,V>
- java.lang.Object
-
- java.util.Dictionary<K,V>
-
- java.util.Hashtable<K,V>
-
- org.datanucleus.store.types.wrappers.Hashtable<K,V>
-
- org.datanucleus.store.types.wrappers.backed.Hashtable<K,V>
-
- All Implemented Interfaces:
Serializable,Cloneable,Map<K,V>,SCO<Hashtable<K,V>>,SCOContainer<Hashtable<K,V>>,SCOMap<Hashtable<K,V>,K,V>,BackedSCO
public class Hashtable<K,V> extends Hashtable<K,V> implements BackedSCO
A mutable second-class Hashtable object. Backed by a MapStore object.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected booleanallowNullsprotected MapStore<K,V>backingStoreprotected booleanisCacheLoadedprotected booleanuseCache
-
Constructor Summary
Constructors Constructor Description Hashtable(DNStateManager sm, AbstractMemberMetaData mmd)Constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()Method to clear the HashtableObjectclone()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.SetentrySet()Accessor for the set of entries in the Map.booleanequals(Object o)Method to check the equality of this map, and another.voidforEach(BiConsumer<? super K,? super V> action)Vget(Object key)Accessor for the value stored against a key.StoregetBackingStore()HashtablegetValue()Accessor for the unwrapped value that we are wrapping.inthashCode()Method to generate a hashcode for this Map.voidinitialise()Method to initialise the SCO for use.voidinitialise(Hashtable m)Method to initialise the SCO from an existing value.voidinitialise(Hashtable 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.SetkeySet()Accessor for the set of keys in the Map.voidload()Method to effect the load of the data in the SCO.protected voidloadFromStore()Method to load all elements from the "backing store" where appropriate.Vput(K key, V value)Method to add a value against a key to the HashtablevoidputAll(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 Hashtableintsize()Method to return the size of the Map.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 org.datanucleus.store.types.wrappers.Hashtable
attachCopy, detachCopy, getFieldName, getOwner, makeDirty, setValue
-
Methods inherited from class java.util.Hashtable
compute, computeIfAbsent, computeIfPresent, contains, elements, getOrDefault, keys, merge, putIfAbsent, rehash, remove, replace, replace, replaceAll, toString
-
-
-
-
Constructor Detail
-
Hashtable
public Hashtable(DNStateManager sm, AbstractMemberMetaData mmd)
Constructor- Parameters:
sm- the owner of this Mapmmd- Metadata for the member
-
-
Method Detail
-
initialise
public void initialise(Hashtable 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>- Overrides:
initialisein classHashtable<K,V>- Parameters:
newValue- New value (to wrap)oldValue- Old value (to use in deciding what needs deleting etc)
-
initialise
public void initialise(Hashtable m)
Method to initialise the SCO from an existing value.- Specified by:
initialisein interfaceSCO<K>- Overrides:
initialisein classHashtable<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 classHashtable<K,V>
-
getValue
public Hashtable 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.
-
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.
-
loadFromStore
protected void loadFromStore()
Method to load all elements from the "backing store" where appropriate.
-
getBackingStore
public Store getBackingStore()
- Specified by:
getBackingStorein interfaceBackedSCO
-
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.
-
unsetOwner
public void unsetOwner()
Method to unset the owner and field details.- Specified by:
unsetOwnerin interfaceSCO<K>- Overrides:
unsetOwnerin classHashtable<K,V>
-
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.
-
containsKey
public boolean containsKey(Object key)
Method to return if the map contains this key- Specified by:
containsKeyin interfaceMap<K,V>- Overrides:
containsKeyin classHashtable<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 classHashtable<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.
-
forEach
public void forEach(BiConsumer<? super K,? super V> action)
-
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 Hashtable
-
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.- Overrides:
writeReplacein classHashtable<K,V>- Returns:
- the replaced object
- Throws:
ObjectStreamException- if an error occurs
-
-