Class DBCachedObjectStoreEntrySet<T extends DBAnnotatedObject>

java.lang.Object
ghidra.util.database.DBCachedObjectStoreEntrySet<T>
Type Parameters:
T - the type of objects in the store
All Implemented Interfaces:
Iterable<Map.Entry<Long,T>>, Collection<Map.Entry<Long,T>>, NavigableSet<Map.Entry<Long,T>>, SequencedCollection<Map.Entry<Long,T>>, SequencedSet<Map.Entry<Long,T>>, Set<Map.Entry<Long,T>>, SortedSet<Map.Entry<Long,T>>
Direct Known Subclasses:
DBCachedObjectStoreEntrySubSet

public class DBCachedObjectStoreEntrySet<T extends DBAnnotatedObject> extends Object implements NavigableSet<Map.Entry<Long,T>>
This provides the implementation of Map.entrySet() for DBCachedObjectStore.asMap()

The store acts as a map from object id to object, thus an entry has a long key and object value.