public class Neo4j4ItemReader<T> extends AbstractNeo4jItemReader
Extensions of the AbstractNeo4jItemReader
intended for use with versions of
Spring Data Neo4J > 4. Conversions of the results are done using logic based on the
target type.
logger
page, pageSize, results
Constructor and Description |
---|
Neo4j4ItemReader() |
Modifier and Type | Method and Description |
---|---|
protected java.util.Iterator<T> |
doPageRead()
Method this
ItemStreamReader delegates to
for the actual work of reading a page. |
afterPropertiesSet, generateLimitCypherQuery, getParameterValues, getTargetType, getTemplate, setMatchStatement, setOrderByStatement, setParameterValues, setReturnStatement, setStartStatement, setTargetType, setTemplate, setWhereStatement
doClose, doOpen, doRead, jumpToItem, setPageSize
close, getCurrentItemCount, isSaveState, open, read, setCurrentItemCount, setMaxItemCount, setSaveState, update
getExecutionContextKey, setExecutionContextName, setName
protected java.util.Iterator<T> doPageRead()
AbstractPaginatedDataItemReader
ItemStreamReader
delegates to
for the actual work of reading a page. Each time
this method is called, the resulting Iterator
should contain the items read within the next page.
Iterator
is empty or null when it is
returned, this ItemReader
will assume that the
input has been exhausted.doPageRead
in class AbstractPaginatedDataItemReader
Iterator
containing the items within a page.