java.lang.Object
org.neo4j.driver.Records
Static utility methods for retaining records
- Since:
- 1.0
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptioncolumn
(int index) Returns a function mapping record to a value from a given index.Returns a function mapping record to a value of a target type from a given index.Returns a function mapping record to a value from a given key.Returns a function mapping record to a value of a target type from a given key.
-
Method Details
-
column
Returns a function mapping record to a value from a given index.- Parameters:
index
- the index value- Returns:
- the function
-
column
Returns a function mapping record to a value from a given key.- Parameters:
key
- the key value- Returns:
- the function
-
column
Returns a function mapping record to a value of a target type from a given index.- Type Parameters:
T
- the target type- Parameters:
index
- the index valuemapFunction
- the function mapping value to a value of a target type- Returns:
- the function
-
column
Returns a function mapping record to a value of a target type from a given key.- Type Parameters:
T
- the target type- Parameters:
key
- the key valuemapFunction
- the function mapping value to a value of a target type- Returns:
- the function
-