Package org.infinispan.util
Class AbstractDelegatingCloseableIteratorCollection<E>
- java.lang.Object
-
- org.infinispan.commons.util.AbstractDelegatingCollection<E>
-
- org.infinispan.util.AbstractDelegatingCloseableIteratorCollection<E>
-
- Type Parameters:
E
- The type in the collection
- All Implemented Interfaces:
java.lang.Iterable<E>
,java.util.Collection<E>
,CloseableIteratorCollection<E>
- Direct Known Subclasses:
AbstractDelegatingCacheCollection
public abstract class AbstractDelegatingCloseableIteratorCollection<E> extends AbstractDelegatingCollection<E> implements CloseableIteratorCollection<E>
Delegating collection that produces closeable iterators and spliterators from the collection returned fromdelegate()
method.
-
-
Constructor Summary
Constructors Constructor Description AbstractDelegatingCloseableIteratorCollection()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected abstract CloseableIteratorCollection<E>
delegate()
CloseableIterator<E>
iterator()
CloseableSpliterator<E>
spliterator()
-
Methods inherited from class org.infinispan.commons.util.AbstractDelegatingCollection
add, addAll, clear, contains, containsAll, forEach, isEmpty, parallelStream, remove, removeAll, removeIf, retainAll, size, stream, toArray, toArray
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.infinispan.commons.util.CloseableIteratorCollection
parallelStream, stream
-
-
-
-
Method Detail
-
delegate
protected abstract CloseableIteratorCollection<E> delegate()
- Specified by:
delegate
in classAbstractDelegatingCollection<E>
-
iterator
public CloseableIterator<E> iterator()
Description copied from interface:CloseableIteratorCollection
This iterator should be explicitly closed when iteration upon it is completed. Failure to do so could cause resources to not be freed properly
- Specified by:
iterator
in interfaceCloseableIteratorCollection<E>
- Specified by:
iterator
in interfacejava.util.Collection<E>
- Specified by:
iterator
in interfacejava.lang.Iterable<E>
- Overrides:
iterator
in classAbstractDelegatingCollection<E>
-
spliterator
public CloseableSpliterator<E> spliterator()
Description copied from interface:CloseableIteratorCollection
This spliterator should be explicitly closed after it has been used. Failure to do so could cause resources to not be freed properly
- Specified by:
spliterator
in interfaceCloseableIteratorCollection<E>
- Specified by:
spliterator
in interfacejava.util.Collection<E>
- Specified by:
spliterator
in interfacejava.lang.Iterable<E>
- Overrides:
spliterator
in classAbstractDelegatingCollection<E>
-
-