Package com.tangosol.util
Class AbstractKeyBasedMap.EntrySet
- All Implemented Interfaces:
Iterable<Map.Entry<K,
,V>> Collection<Map.Entry<K,
,V>> Set<Map.Entry<K,
V>>
- Direct Known Subclasses:
AbstractKeySetBasedMap.EntrySet
,OpenHashMap.EntrySet
- Enclosing class:
AbstractKeyBasedMap<K,
V>
A set of entries backed by this map.
-
Nested Class Summary
Modifier and TypeClassDescriptionprotected class
A Map Entry implementation that defers its value acquisition from the containing map (viaMap.get(Object)
) if the Entry is constructed with a null value.protected class
An Iterator over the EntrySet that is backed by the Map. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
clear()
Removes all of the elements from this set of Keys by clearing the underlying Map.boolean
Returns true if this collection contains the specified element.instantiateEntry
(K oKey, V oValue) Factory pattern.Factory pattern.boolean
isEmpty()
Returns true if this Set is empty.iterator()
Returns an iterator over the elements contained in this collection.boolean
Removes the specified element from this Set of entries if it is present by removing the associated entry from the underlying Map.int
size()
Returns the number of elements in this collection.Methods inherited from class java.util.AbstractSet
equals, hashCode, removeAll
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, retainAll, toArray, toArray, toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
Methods inherited from interface java.util.Set
add, addAll, containsAll, retainAll, spliterator, toArray, toArray
-
Constructor Details
-
EntrySet
public EntrySet()
-
-
Method Details
-
clear
public void clear()Removes all of the elements from this set of Keys by clearing the underlying Map. -
contains
Returns true if this collection contains the specified element. More formally, returns true if and only if this collection contains at least one element e such that (o==null ? e==null : o.equals(e)).- Specified by:
contains
in interfaceCollection<Map.Entry<K,
V>> - Specified by:
contains
in interfaceSet<Map.Entry<K,
V>> - Overrides:
contains
in classAbstractCollection<Map.Entry<K,
V>> - Parameters:
o
- object to be checked for containment in this collection- Returns:
- true if this collection contains the specified element
-
isEmpty
public boolean isEmpty()Returns true if this Set is empty. -
iterator
Returns an iterator over the elements contained in this collection.- Specified by:
iterator
in interfaceCollection<Map.Entry<K,
V>> - Specified by:
iterator
in interfaceIterable<Map.Entry<K,
V>> - Specified by:
iterator
in interfaceSet<Map.Entry<K,
V>> - Specified by:
iterator
in classAbstractCollection<Map.Entry<K,
V>> - Returns:
- an iterator over the elements contained in this collection
-
remove
Removes the specified element from this Set of entries if it is present by removing the associated entry from the underlying Map. -
size
public int size()Returns the number of elements in this collection. -
instantiateEntry
Factory pattern. Create a Map Entry.- Parameters:
oKey
- the Entry key (required)oValue
- the Entry value (optional; lazy loaded if necessary)- Returns:
- a new instance of an Entry with the specified key and value (if one is provided)
-
instantiateIterator
Factory pattern.- Returns:
- a new instance of an Iterator over the EntrySet
-