Class BaseTableOperations.ResultSetEntryIterator
java.lang.Object
org.infinispan.commons.util.AbstractIterator<MarshallableEntry<K,V>>
org.infinispan.persistence.jdbc.common.sql.BaseTableOperations.ResultSetEntryIterator
- All Implemented Interfaces:
Iterator<MarshallableEntry<K,
V>>
- Enclosing class:
BaseTableOperations<K,
V>
protected class BaseTableOperations.ResultSetEntryIterator
extends AbstractIterator<MarshallableEntry<K,V>>
-
Constructor Summary
ConstructorDescriptionResultSetEntryIterator
(ResultSet rs, Predicate<? super K> filter, boolean fetchValue) -
Method Summary
Modifier and TypeMethodDescriptionprotected MarshallableEntry
<K, V> getNext()
Method to implement to provide an iterator implementation.Methods inherited from class org.infinispan.commons.util.AbstractIterator
forEachRemaining, hasNext, next
-
Constructor Details
-
ResultSetEntryIterator
-
-
Method Details
-
getNext
Description copied from class:AbstractIterator
Method to implement to provide an iterator implementation. When this method returns null, the iterator is complete.- Specified by:
getNext
in classAbstractIterator<MarshallableEntry<K,
V>> - Returns:
- the next value for the iterator to return or null for it to be complete.
-