Uses of Interface
com.graphdbapi.driver.v1.Record
-
Packages that use Record Package Description com.graphdbapi.driver.v1 -
-
Uses of Record in com.graphdbapi.driver.v1
Methods in com.graphdbapi.driver.v1 that return Record Modifier and Type Method Description Record
StatementResult. next()
导航到此结果并检索下一个Record
。Record
StatementResult. peek()
调查下一个即将到来的记录,而不是向前推进结果。Record
StatementResult. single()
返回结果中的第一条记录,如果流中没有剩下一条记录,则会失败Methods in com.graphdbapi.driver.v1 that return types with arguments of type Record Modifier and Type Method Description List<Record>
StatementResult. list()
检索并存储整个结果流。 如果要多次迭代流或存储整个结果以供以后使用,可以使用此方法。Method parameters in com.graphdbapi.driver.v1 with type arguments of type Record Modifier and Type Method Description <T> List<T>
StatementResult. list(com.graphdbapi.driver.v1.util.Function<Record,T> mapFunction)
检索并存储整个结果的投影。 如果要多次迭代流或存储整个结果以供以后使用,可以使用此方法。
-