public class CloseableIteratorCollectionAdapter<E> extends Object implements CloseableIteratorCollection<E>
Collection to CloseableIteratorCollection| Modifier and Type | Field and Description | 
|---|---|
protected Collection<E> | 
delegate  | 
| Constructor and Description | 
|---|
CloseableIteratorCollectionAdapter(Collection<E> delegate)  | 
| Modifier and Type | Method and Description | 
|---|---|
boolean | 
add(E e)  | 
boolean | 
addAll(Collection<? extends E> c)  | 
void | 
clear()  | 
boolean | 
contains(Object o)  | 
boolean | 
containsAll(Collection<?> c)  | 
boolean | 
isEmpty()  | 
CloseableIterator<E> | 
iterator() | 
boolean | 
remove(Object o)  | 
boolean | 
removeAll(Collection<?> c)  | 
boolean | 
retainAll(Collection<?> c)  | 
int | 
size()  | 
CloseableSpliterator<E> | 
spliterator() | 
Object[] | 
toArray()  | 
<T> T[] | 
toArray(T[] a)  | 
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitparallelStream, streamequals, hashCode, removeIfprotected final Collection<E> delegate
public CloseableIteratorCollectionAdapter(Collection<E> delegate)
public int size()
size in interface Collection<E>public boolean isEmpty()
isEmpty in interface Collection<E>public boolean contains(Object o)
contains in interface Collection<E>public CloseableIterator<E> iterator()
CloseableIteratorCollectionThis iterator should be explicitly closed when iteration upon it is completed. Failure to do so could cause resources to not be freed properly
iterator in interface Iterable<E>iterator in interface Collection<E>iterator in interface CloseableIteratorCollection<E>public CloseableSpliterator<E> spliterator()
CloseableIteratorCollectionThis spliterator should be explicitly closed after it has been used. Failure to do so could cause resources to not be freed properly
spliterator in interface Iterable<E>spliterator in interface Collection<E>spliterator in interface CloseableIteratorCollection<E>public Object[] toArray()
toArray in interface Collection<E>public <T> T[] toArray(T[] a)
toArray in interface Collection<E>public boolean add(E e)
add in interface Collection<E>public boolean remove(Object o)
remove in interface Collection<E>public boolean containsAll(Collection<?> c)
containsAll in interface Collection<E>public boolean addAll(Collection<? extends E> c)
addAll in interface Collection<E>public boolean retainAll(Collection<?> c)
retainAll in interface Collection<E>public boolean removeAll(Collection<?> c)
removeAll in interface Collection<E>public void clear()
clear in interface Collection<E>Copyright © 2018 JBoss, a division of Red Hat. All rights reserved.