Class WeakObjectRegistry<K,E extends K>
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractSet<E>
-
- org.eclipse.rdf4j.sail.memory.model.WeakObjectRegistry<K,E>
-
- All Implemented Interfaces:
Iterable<E>
,Collection<E>
,Set<E>
public class WeakObjectRegistry<K,E extends K> extends AbstractSet<E>
An object registry that uses weak references to keep track of the stored objects. The registry can be used to retrieve stored objects using another, equivalent object. As such, it can be used to prevent the use of duplicates in another data structure, reducing memory usage. The objects that are being stored should properly implement theObject.equals(java.lang.Object)
andObject.hashCode()
methods.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WeakObjectRegistry.AutoCloseableIterator<E>
-
Constructor Summary
Constructors Constructor Description WeakObjectRegistry()
Constructs a new, empty object registry.WeakObjectRegistry(int cacheSize, Collection<? extends E> c)
Constructs a new WeakObjectRegistry containing the elements in the specified collection.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(E object)
void
clear()
WeakObjectRegistry.AutoCloseableIterator<E>
closeableIterator()
boolean
contains(Object key)
E
get(K key)
Retrieves the stored object that is equal to the supplied key object.E
getOrAdd(K key, Supplier<E> supplier)
Iterator<E>
iterator()
boolean
remove(Object object)
int
size()
-
Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
-
Methods inherited from class java.util.AbstractCollection
addAll, containsAll, isEmpty, retainAll, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.Set
addAll, containsAll, isEmpty, retainAll, spliterator, toArray, toArray
-
-
-
-
Constructor Detail
-
WeakObjectRegistry
public WeakObjectRegistry()
Constructs a new, empty object registry.
-
WeakObjectRegistry
public WeakObjectRegistry(int cacheSize, Collection<? extends E> c)
Constructs a new WeakObjectRegistry containing the elements in the specified collection.- Parameters:
c
- The collection whose elements are to be placed into this object registry.- Throws:
NullPointerException
- If the specified collection is null.
-
-
Method Detail
-
get
public E get(K key)
Retrieves the stored object that is equal to the supplied key object.- Parameters:
key
- The object that should be used as the search key for the operation.- Returns:
- A stored object that is equal to the supplied key, or null if no such object was found.
-
closeableIterator
public WeakObjectRegistry.AutoCloseableIterator<E> closeableIterator()
-
size
public int size()
- Specified by:
size
in interfaceCollection<K>
- Specified by:
size
in interfaceSet<K>
- Specified by:
size
in classAbstractCollection<E extends K>
-
contains
public boolean contains(Object key)
- Specified by:
contains
in interfaceCollection<K>
- Specified by:
contains
in interfaceSet<K>
- Overrides:
contains
in classAbstractCollection<E extends K>
-
add
public boolean add(E object)
- Specified by:
add
in interfaceCollection<K>
- Specified by:
add
in interfaceSet<K>
- Overrides:
add
in classAbstractCollection<E extends K>
-
remove
public boolean remove(Object object)
- Specified by:
remove
in interfaceCollection<K>
- Specified by:
remove
in interfaceSet<K>
- Overrides:
remove
in classAbstractCollection<E extends K>
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection<K>
- Specified by:
clear
in interfaceSet<K>
- Overrides:
clear
in classAbstractCollection<E extends K>
-
-