Inheritance diagram for com::sleepycat::collections::StoredEntrySet:
Public Member Functions | |
boolean | add (Object mapEntry) |
boolean | remove (Object mapEntry) |
boolean | contains (Object mapEntry) |
String | toString () |
The java.util.Map.Entry#setValue method of the Map.Entry objects that are returned by this class and its iterators behaves just as the StoredIterator#set method does.
Note that this class does not conform to the standard Java collections interface in the following ways:
UnsupportedOperationException
because, for performance reasons, databases do not maintain their total record count.
Definition at line 41 of file StoredEntrySet.java.
|
Adds the specified element to this set if it is not already present (optional operation). This method conforms to the Set#add interface.
Definition at line 65 of file StoredEntrySet.java. |
|
Returns true if this set contains the specified element. This method conforms to the Set#contains interface.
Definition at line 122 of file StoredEntrySet.java. References com::sleepycat::collections::DataCursor::getSearchBoth(). |
|
Removes the specified element from this set if it is present (optional operation). This method conforms to the Set#remove interface.
Definition at line 86 of file StoredEntrySet.java. References com::sleepycat::collections::DataCursor::delete(), and com::sleepycat::collections::DataCursor::getSearchBoth(). |
|
Converts the collection to a string representation for debugging. WARNING: The returned string may be very large.
Reimplemented from com::sleepycat::collections::StoredCollection. Definition at line 142 of file StoredEntrySet.java. References com::sleepycat::collections::StoredCollection::iterator(). |