gnu.trove

Class THashMap.KeyView

protected class THashMap.KeyView extends Object implements Set

a view onto the keys of the map.
Nested Class Summary
protected classTHashMap.KeyView.EntryIterator
Method Summary
booleanadd(Object obj)
booleanaddAll(Collection collection)
voidclear()
booleancontains(Object key)
booleancontainsAll(Collection collection)
booleanisEmpty()
Iteratoriterator()
booleanremove(Object key)
booleanremoveAll(Collection collection)
booleanretainAll(Collection collection)
intsize()
Object[]toArray()
Object[]toArray(Object[] a)

Method Detail

add

public boolean add(Object obj)

addAll

public boolean addAll(Collection collection)

clear

public void clear()

contains

public boolean contains(Object key)

containsAll

public boolean containsAll(Collection collection)

isEmpty

public boolean isEmpty()

iterator

public Iterator iterator()

remove

public boolean remove(Object key)

removeAll

public boolean removeAll(Collection collection)

retainAll

public boolean retainAll(Collection collection)

size

public int size()

toArray

public Object[] toArray()

toArray

public Object[] toArray(Object[] a)