Class AbstractMutableBiMap.ValuesCollection
- java.lang.Object
-
- org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap.ValuesCollection
-
- All Implemented Interfaces:
java.lang.Iterable<V>,java.util.Collection<V>
- Enclosing class:
- AbstractMutableBiMap<K,V>
protected class AbstractMutableBiMap.ValuesCollection extends java.lang.Object implements java.util.Collection<V>
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedValuesCollection()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(V v)booleanaddAll(java.util.Collection<? extends V> collection)voidclear()booleancontains(java.lang.Object key)booleancontainsAll(java.util.Collection<?> collection)booleanisEmpty()java.util.Iterator<V>iterator()booleanremove(java.lang.Object value)booleanremoveAll(java.util.Collection<?> collection)booleanretainAll(java.util.Collection<?> collection)intsize()java.lang.Object[]toArray()<T> T[]toArray(T[] a)java.lang.StringtoString()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfacejava.util.Collection<V>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfacejava.util.Collection<V>
-
contains
public boolean contains(java.lang.Object key)
- Specified by:
containsin interfacejava.util.Collection<V>
-
toArray
public java.lang.Object[] toArray()
- Specified by:
toArrayin interfacejava.util.Collection<V>
-
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArrayin interfacejava.util.Collection<V>
-
remove
public boolean remove(java.lang.Object value)
- Specified by:
removein interfacejava.util.Collection<V>
-
containsAll
public boolean containsAll(java.util.Collection<?> collection)
- Specified by:
containsAllin interfacejava.util.Collection<V>
-
addAll
public boolean addAll(java.util.Collection<? extends V> collection)
- Specified by:
addAllin interfacejava.util.Collection<V>
-
removeAll
public boolean removeAll(java.util.Collection<?> collection)
- Specified by:
removeAllin interfacejava.util.Collection<V>
-
retainAll
public boolean retainAll(java.util.Collection<?> collection)
- Specified by:
retainAllin interfacejava.util.Collection<V>
-
clear
public void clear()
- Specified by:
clearin interfacejava.util.Collection<V>
-
iterator
public java.util.Iterator<V> iterator()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-