public class StoredEntrySet extends StoredCollection implements java.util.Set
Map.entrySet() this class
does support the add(java.lang.Object) and StoredCollection.addAll(java.util.Collection) methods.
The Map.Entry.setValue(V) method of the Map.Entry objects
that are returned by this class and its iterators behaves just as the StoredIterator.set(java.lang.Object) method does.
DEFAULT_ITERATOR_BLOCK_SIZE| Modifier and Type | Method and Description |
|---|---|
boolean |
add(java.lang.Object mapEntry)
Adds the specified element to this set if it is not already present
(optional operation).
|
boolean |
contains(java.lang.Object mapEntry)
Returns true if this set contains the specified element.
|
boolean |
remove(java.lang.Object mapEntry)
Removes the specified element from this set if it is present (optional
operation).
|
java.lang.String |
toString()
Converts the collection to a string representation for debugging.
|
addAll, containsAll, equals, getIteratorBlockSize, hashCode, iterator, iterator, join, removeAll, retainAll, setIteratorBlockSize, size, storedIterator, storedIterator, toArray, toArray, toListareDuplicatesAllowed, areDuplicatesOrdered, areKeysRenumbered, clear, getCursorConfig, isDirtyRead, isDirtyReadAllowed, isEmpty, isOrdered, isSecondary, isTransactional, isWriteAllowedpublic boolean add(java.lang.Object mapEntry)
Set.add(E) interface.add in interface java.util.Collectionadd in interface java.util.SetmapEntry - must be a Map.Entry instance.java.lang.UnsupportedOperationException - if the collection is read-only.java.lang.ClassCastException - if the mapEntry is not a Map.Entry instance.RuntimeExceptionWrapper - if a DatabaseException is thrown.public boolean remove(java.lang.Object mapEntry)
Set.remove(java.lang.Object) interface.remove in interface java.util.Collectionremove in interface java.util.SetmapEntry - is a Map.Entry instance to be removed.Map.Entry instance or is not
present in the set.java.lang.UnsupportedOperationException - if the collection is read-only.RuntimeExceptionWrapper - if a DatabaseException is thrown.public boolean contains(java.lang.Object mapEntry)
Set.contains(java.lang.Object) interface.contains in interface java.util.Collectioncontains in interface java.util.SetmapEntry - is a Map.Entry instance to be checked.Map.Entry instance or is not
present in the set.RuntimeExceptionWrapper - if a DatabaseException is thrown.public java.lang.String toString()
StoredCollectiontoString in class StoredCollection