Class ObjectFloatHashMapWithHashingStrategy.KeySet
- java.lang.Object
-
- org.eclipse.collections.impl.map.mutable.primitive.ObjectFloatHashMapWithHashingStrategy.KeySet
-
- All Implemented Interfaces:
java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Set<K>
- Enclosing class:
- ObjectFloatHashMapWithHashingStrategy<K>
private class ObjectFloatHashMapWithHashingStrategy.KeySet extends java.lang.Object implements java.util.Set<K>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
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> collection)
void
clear()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> collection)
private void
copyKeys(java.lang.Object[] result)
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[] 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)
-
-