| Package | Description |
|---|---|
| eu.easyrpa.openframework.google.sheets |
Objects model representing Google Spreadsheet and functionality to work with it via Google Sheets API.
|
| Modifier and Type | Method and Description |
|---|---|
<T> Table<T> |
Sheet.findTable(Class<T> recordType,
MatchMethod matchMethod,
String... keywords)
Searches table on the sheet with given keywords in header.
|
<T> Table<T> |
Sheet.findTable(Class<T> recordType,
String... keywords)
Searches table on the sheet with given keywords in header.
|
<T> Table<T> |
Sheet.getTable(int headerTopRow,
int headerLeftCol,
Class<T> recordType)
Gets table located at this sheet.
|
<T> Table<T> |
Sheet.getTable(int headerTopRow,
int headerLeftCol,
int headerBottomRow,
int headerRightCol,
Class<T> recordType)
Gets table located at this sheet.
|
<T> Table<T> |
Sheet.getTable(String topLeftCellRef,
Class<T> recordType)
Gets table located at this sheet.
|
<T> Table<T> |
Sheet.getTable(String headerTopLeftCellRef,
String headerBottomRightCellRef,
Class<T> recordType)
Gets table located at this sheet.
|
<T> Table<T> |
Sheet.insertTable(int startRow,
int startCol,
List<T> records)
Inserts table into this sheet at position starting from cell defined by
startRow and startCol (top-left cell of the table) |
<T> Table<T> |
Sheet.insertTable(List<T> records)
Inserts table into this sheet at position starting from cell "A1" (0 - row index and 0 - column index)
|
<T> Table<T> |
Sheet.insertTable(String topLeftCellRef,
List<T> records)
Inserts table into this sheet at position starting from cell defined by
topLeftCellRef (top-left cell of the table) |
Copyright © 2022. All rights reserved.