CopyableBuilder<ResultSet.Builder,ResultSet>
, SdkBuilder<ResultSet.Builder,ResultSet>
public static interface ResultSet.Builder extends CopyableBuilder<ResultSet.Builder,ResultSet>
Modifier and Type | Method | Description |
---|---|---|
ResultSet.Builder |
resultSetMetadata(ResultSetMetadata resultSetMetadata) |
The metadata that describes the column structure and data types of a table of query results.
|
ResultSet.Builder |
rows(Collection<Row> rows) |
The rows in the table.
|
ResultSet.Builder |
rows(Row... rows) |
The rows in the table.
|
copy
apply, build
ResultSet.Builder rows(Collection<Row> rows)
The rows in the table.
rows
- The rows in the table.ResultSet.Builder rows(Row... rows)
The rows in the table.
NOTE: This method appends the values to the existing list (if any). Use
#setRows(java.util.Collection)
or #withRows(java.util.Collection)
if you want to override the
existing values.
rows
- The rows in the table.ResultSet.Builder resultSetMetadata(ResultSetMetadata resultSetMetadata)
The metadata that describes the column structure and data types of a table of query results.
resultSetMetadata
- The metadata that describes the column structure and data types of a table of query results.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.