Package | Description |
---|---|
ra.db.record |
Modifier and Type | Class and Description |
---|---|
class |
Row
Row of query result.
|
Modifier and Type | Method and Description |
---|---|
java.util.stream.Stream<RowSet> |
RecordSet.parallelStream()
Return the parallel stream in SQL statement execute finish.
|
java.util.stream.Stream<RowSet> |
RecordCursor.parallelStream()
Returns parallel stream of the number of data after the query is completed.
|
java.util.stream.Stream<RowSet> |
RecordSet.stream()
Return the serialization stream in SQL statement execute finish.
|
java.util.stream.Stream<RowSet> |
RecordCursor.stream()
Returns ordered stream of the number of data after the query is completed.
|
java.util.Spliterator<RowSet> |
RecordSpliterator.trySplit() |
Modifier and Type | Method and Description |
---|---|
void |
RecordSet.forEach(java.util.function.Consumer<RowSet> action)
Take the row data by row data.
|
void |
RecordCursor.forEach(java.util.function.Consumer<RowSet> action)
Get each row data from the record.
|
boolean |
RecordSpliterator.tryAdvance(java.util.function.Consumer<? super RowSet> action) |