org.dom4j.tree
Class ConcurrentReaderHashMap.EntrySet

java.lang.Object
java.util.AbstractCollection
java.util.AbstractSet
org.dom4j.tree.ConcurrentReaderHashMap.EntrySet
- All Implemented Interfaces:
- java.util.Collection, java.lang.Iterable, java.util.Set
- Enclosing class:
- ConcurrentReaderHashMap
- private class ConcurrentReaderHashMap.EntrySet
- extends java.util.AbstractSet
ConcurrentReaderHashMap.EntrySet
private ConcurrentReaderHashMap.EntrySet()
iterator
public java.util.Iterator iterator()
- Description copied from interface:
java.util.Set
- Returns an iterator over the set. The iterator has no specific order,
unless further specified.
contains
public boolean contains(java.lang.Object o)
- Description copied from interface:
java.util.Set
- Returns true if the set contains the specified element. In other words,
this looks for
o == null ? e == null : o.equals(e).
remove
public boolean remove(java.lang.Object o)
- Description copied from interface:
java.util.Set
- Removes the specified element from this set (optional operation). If
an element e exists,
o == null ? e == null : o.equals(e),
it is removed from the set.
size
public int size()
- Description copied from interface:
java.util.Set
- Returns the number of elements in the set. If there are more
than Integer.MAX_VALUE mappings, return Integer.MAX_VALUE. This is
the cardinality of the set.
clear
public void clear()
- Description copied from interface:
java.util.Set
- Removes all elements from this set (optional operation). This set will
be empty afterwords, unless an exception occurs.