| Package | Description |
|---|---|
| eu.easyrpa.openframework.google.sheets |
Objects model representing Google Spreadsheet and functionality to work with it via Google Sheets API.
|
| eu.easyrpa.openframework.google.sheets.function |
Custom logic support for tying of Google Spreadsheet document data with plain java objects.
|
| Modifier and Type | Method and Description |
|---|---|
Cell |
Row.addCell(Object value)
Creates a new cell at the end of this row and sets to it given value.
|
Cell |
Row.createCell(int colIndex)
Creates a new cell at the given column index and returns its representing object.
|
Cell |
Column.createCell(int rowIndex)
Creates a new cell at the given row index and returns its representing object.
|
Cell |
Sheet.findCell(MatchMethod matchMethod,
String value)
Searches cell with given value on the sheet.
|
Cell |
Sheet.findCell(String value)
Searches cell with given value on the sheet.
|
Cell |
Row.getCell(int colIndex)
Gets the cell of this row represented by given column index.
|
Cell |
Column.getCell(int rowIndex)
Gets the cell of this column represented by given row index.
|
Cell |
Sheet.getCell(int rowIndex,
int colIndex)
Gets the cell represented by given row and column indexes.
|
Cell |
Row.getCell(String cellRef)
Gets the cell of this row represented by given reference.
|
Cell |
Sheet.getCell(String cellRef)
Gets the cell represented by given reference.
|
Cell |
Column.getCell(String cellRef)
Gets the cell of this column represented by given reference.
|
Cell |
Cell.getMergedRegionCell()
Gets top-left cell of merged region where this cell is hit.
|
Cell |
Sheet.mergeCells(CellRange region)
Merges given cells range of this sheet.
|
Cell |
Sheet.mergeCells(int startRow,
int startCol,
int endRow,
int endCol)
Merges cells range of this sheet.
|
Cell |
Sheet.mergeCells(String regionRef)
Merges cells range of this sheet by given reference.
|
Cell |
Sheet.mergeCells(String startCellRef,
String endCellRef)
Merges cells range of this sheet.
|
| Modifier and Type | Method and Description |
|---|---|
Iterator<Cell> |
Row.iterator()
Returns an iterator of objects representing existing cells of this row.
|
Iterator<Cell> |
Column.iterator()
Returns an iterator of objects representing existing cells of this column.
|
| Modifier and Type | Method and Description |
|---|---|
void |
CellStyle.applyTo(Cell cell,
boolean updateAll)
Applies this style to given cell.
|
| Constructor and Description |
|---|
CellStyle(Cell cell)
Creates cell style object with style parameters of given cell.
|
| Modifier and Type | Method and Description |
|---|---|
void |
TableFormatter.format(Cell cell,
String column,
int recordIndex,
List<T> records)
Formats cells based on some specific logic.
|
void |
ColumnFormatter.format(Cell cell,
String column,
T record)
Formats cells based on some specific logic.
|
Copyright © 2022. All rights reserved.