Class AbstractHashedMap.Values
- java.lang.Object
-
- java.util.AbstractCollection
-
- org.apache.commons.collections.map.AbstractHashedMap.Values
-
- All Implemented Interfaces:
Iterable
,Collection
- Enclosing class:
- AbstractHashedMap
protected static class AbstractHashedMap.Values extends AbstractCollection
Values implementation.
-
-
Field Summary
Fields Modifier and Type Field Description protected AbstractHashedMap
parent
The parent map
-
Constructor Summary
Constructors Modifier Constructor Description protected
Values(AbstractHashedMap parent)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
clear()
boolean
contains(Object value)
Iterator
iterator()
int
size()
-
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, isEmpty, remove, removeAll, retainAll, toArray, toArray, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Field Detail
-
parent
protected final AbstractHashedMap parent
The parent map
-
-
Constructor Detail
-
Values
protected Values(AbstractHashedMap parent)
-
-
Method Detail
-
size
public int size()
- Specified by:
size
in interfaceCollection
- Specified by:
size
in classAbstractCollection
-
clear
public void clear()
- Specified by:
clear
in interfaceCollection
- Overrides:
clear
in classAbstractCollection
-
contains
public boolean contains(Object value)
- Specified by:
contains
in interfaceCollection
- Overrides:
contains
in classAbstractCollection
-
iterator
public Iterator iterator()
- Specified by:
iterator
in interfaceCollection
- Specified by:
iterator
in interfaceIterable
- Specified by:
iterator
in classAbstractCollection
-
-