The Set returned by Map.entrySet(). This class may not be instantiated
directly. Contrary to what is stated by
Map.entrySet this class
does support the
StoredEntrySet.add and
StoredEntrySet.addAll methods.
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.
add(Object mapEntry) Adds the specified element to this set if it is not already present
(optional operation).
This method conforms to the
Set.add interface.
Parameters: mapEntry - must be a java.util.Map.Entry instance.
public boolean
contains(Object mapEntry) Returns true if this set contains the specified element.
This method conforms to the
Set.contains interface.
Parameters: mapEntry - is a java.util.Map.Entry instance to be checked.
remove(Object mapEntry) Removes the specified element from this set if it is present (optional
operation).
This method conforms to the
Set.remove interface.
Parameters: mapEntry - is a java.util.Map.Entry instance to be removed.
Adds the specified element to this set if it is not already present
(optional operation).
This method conforms to the
Set.add interface.
Parameters: mapEntry - must be a java.util.Map.Entry instance. true if the key-value pair was added to the set (and was notpreviously present). throws: UnsupportedOperationException - if the collection is read-only. throws: ClassCastException - if the mapEntry is not a java.util.Map.Entry instance. throws: RuntimeExceptionWrapper - if a DatabaseException is thrown.
Returns true if this set contains the specified element.
This method conforms to the
Set.contains interface.
Parameters: mapEntry - is a java.util.Map.Entry instance to be checked. true if the key-value pair is present in the set, or false ifthe mapEntry is not a java.util.Map.Entry instance or is notpresent in the set. throws: RuntimeExceptionWrapper - if a DatabaseException is thrown.
Removes the specified element from this set if it is present (optional
operation).
This method conforms to the
Set.remove interface.
Parameters: mapEntry - is a java.util.Map.Entry instance to be removed. true if the key-value pair was removed from the set, or false ifthe mapEntry is not a java.util.Map.Entry instance or is notpresent in the set. throws: UnsupportedOperationException - if the collection is read-only. throws: RuntimeExceptionWrapper - if a DatabaseException is thrown.