Class AbstractMutableBiMap.KeySet
- java.lang.Object
-
- org.eclipse.collections.impl.bimap.mutable.AbstractMutableBiMap.KeySet
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Set<K>
- Enclosing class:
- AbstractMutableBiMap<K,V>
protected class AbstractMutableBiMap.KeySet extends java.lang.Object implements java.util.Set<K>, java.io.Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
KeySet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
add(K key)
boolean
addAll(java.util.Collection<? extends K> source)
void
clear()
boolean
contains(java.lang.Object key)
boolean
containsAll(java.util.Collection<?> source)
boolean
equals(java.lang.Object obj)
int
hashCode()
boolean
isEmpty()
java.util.Iterator<K>
iterator()
boolean
remove(java.lang.Object key)
boolean
removeAll(java.util.Collection<?> collection)
boolean
retainAll(java.util.Collection<?> collection)
int
size()
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
java.lang.String
toString()
protected java.lang.Object
writeReplace()
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
-
hashCode
public int hashCode()
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(java.lang.Object key)
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
add
public boolean add(K key)
-
remove
public boolean remove(java.lang.Object key)
-
containsAll
public boolean containsAll(java.util.Collection<?> source)
-
addAll
public boolean addAll(java.util.Collection<? extends K> source)
-
retainAll
public boolean retainAll(java.util.Collection<?> collection)
-
removeAll
public boolean removeAll(java.util.Collection<?> collection)
-
clear
public void clear()
-
iterator
public java.util.Iterator<K> iterator()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
writeReplace
protected java.lang.Object writeReplace()
-
-