Class WeakFastHashMap.CollectionView<E>
java.lang.Object
org.apache.commons.beanutils.WeakFastHashMap.CollectionView<E>
- Type Parameters:
E- the element type
- All Implemented Interfaces:
Iterable<E>, Collection<E>
- Direct Known Subclasses:
WeakFastHashMap.EntrySet, WeakFastHashMap.KeySet, WeakFastHashMap.Values
- Enclosing class:
WeakFastHashMap<K,V>
Abstract collection implementation shared by keySet(), values() and entrySet().
- Since:
- Commons Collections 1.0
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprivate class -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanbooleanaddAll(Collection<? extends E> c) voidclear()booleanbooleancontainsAll(Collection<?> o) booleanprotected abstract Collection<E> inthashCode()booleanisEmpty()iterator()protected abstract EiteratorNext(Map.Entry<K, V> entry) booleanbooleanremoveAll(Collection<?> o) booleanretainAll(Collection<?> o) intsize()Object[]toArray()<T> T[]toArray(T[] o) Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface Collection
parallelStream, removeIf, spliterator, stream, toArray
-
Constructor Details
-
CollectionView
public CollectionView()
-
-
Method Details
-
add
- Specified by:
addin interfaceCollection<E>
-
addAll
- Specified by:
addAllin interfaceCollection<E>
-
clear
public void clear()- Specified by:
clearin interfaceCollection<E>
-
contains
- Specified by:
containsin interfaceCollection<E>
-
containsAll
- Specified by:
containsAllin interfaceCollection<E>
-
equals
-
get
-
hashCode
public int hashCode()- Specified by:
hashCodein interfaceCollection<E>- Overrides:
hashCodein classObject
-
isEmpty
public boolean isEmpty()- Specified by:
isEmptyin interfaceCollection<E>
-
iterator
-
iteratorNext
-
remove
- Specified by:
removein interfaceCollection<E>
-
removeAll
- Specified by:
removeAllin interfaceCollection<E>
-
retainAll
- Specified by:
retainAllin interfaceCollection<E>
-
size
public int size()- Specified by:
sizein interfaceCollection<E>
-
toArray
- Specified by:
toArrayin interfaceCollection<E>
-
toArray
public <T> T[] toArray(T[] o) - Specified by:
toArrayin interfaceCollection<E>
-