Class ObjectIntHashMapWithHashingStrategy.KeySet
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.ObjectIntHashMapWithHashingStrategy.KeySet
-
- All Implemented Interfaces:
java.lang.Iterable<K>,java.util.Collection<K>,java.util.Set<K>
- Enclosing class:
- ObjectIntHashMapWithHashingStrategy<K>
private class ObjectIntHashMapWithHashingStrategy.KeySet extends java.lang.Object implements java.util.Set<K>
-
-
Constructor Summary
Constructors Modifier Constructor Description privateKeySet()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(K key)booleanaddAll(java.util.Collection<? extends K> collection)voidclear()booleancontains(java.lang.Object o)booleancontainsAll(java.util.Collection<?> collection)private voidcopyKeys(java.lang.Object[] result)booleanequals(java.lang.Object obj)inthashCode()booleanisEmpty()java.util.Iterator<K>iterator()booleanremove(java.lang.Object key)booleanremoveAll(java.util.Collection<?> collection)booleanretainAll(java.util.Collection<?> collection)intsize()java.lang.Object[]toArray()<T> T[]toArray(T[] result)
-
-
-
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 o)
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] result)
-
add
public boolean add(K key)
-
remove
public boolean remove(java.lang.Object key)
-
containsAll
public boolean containsAll(java.util.Collection<?> collection)
-
addAll
public boolean addAll(java.util.Collection<? extends K> collection)
-
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()
-
copyKeys
private void copyKeys(java.lang.Object[] result)
-
-