Class EquivalentHashMap.Values
- java.lang.Object
-
- java.util.AbstractCollection<V>
-
- org.infinispan.commons.equivalence.EquivalentHashMap.Values
-
- All Implemented Interfaces:
Iterable<V>,Collection<V>
- Enclosing class:
- EquivalentHashMap<K,V>
public final class EquivalentHashMap.Values extends AbstractCollection<V>
-
-
Constructor Summary
Constructors Constructor Description Values()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclear()booleancontains(Object o)Iterator<V>iterator()booleanremove(Object o)intsize()-
Methods inherited from class java.util.AbstractCollection
add, addAll, containsAll, isEmpty, 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
-
-
-
-
Method Detail
-
iterator
public Iterator<V> iterator()
- Specified by:
iteratorin interfaceCollection<V>- Specified by:
iteratorin interfaceIterable<V>- Specified by:
iteratorin classAbstractCollection<V>
-
size
public int size()
- Specified by:
sizein interfaceCollection<V>- Specified by:
sizein classAbstractCollection<V>
-
contains
public boolean contains(Object o)
- Specified by:
containsin interfaceCollection<V>- Overrides:
containsin classAbstractCollection<V>
-
clear
public void clear()
- Specified by:
clearin interfaceCollection<V>- Overrides:
clearin classAbstractCollection<V>
-
remove
public boolean remove(Object o)
- Specified by:
removein interfaceCollection<V>- Overrides:
removein classAbstractCollection<V>
-
-