| 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.constants |
Constants and enumerations used during Google Spreadsheet document manipulation and styling.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Sheet.insertColumn(InsertMethod method,
int columnPos,
int startRow,
List<?> values)
Inserts one column into this sheet at given position and sets given values to it's cells starting from
row defined by
startRow |
void |
Sheet.insertColumn(InsertMethod method,
String columnRef,
String startRowRef,
List<?> values)
Inserts one column into this sheet at given position and sets given values to it's cells starting from
row defined by
startRowRef |
void |
Table.insertRecord(InsertMethod method,
int recordIndex,
T record)
Inserts new record into this table at given position.
|
void |
Table.insertRecord(InsertMethod method,
T relatedRecord,
T record)
Inserts new record into this table at given position.
|
void |
Table.insertRecords(InsertMethod method,
int recordIndex,
List<T> records)
Inserts list of records into this table at given position.
|
void |
Table.insertRecords(InsertMethod method,
T relatedRecord,
List<T> records)
Inserts list of records into this table at given position.
|
void |
Sheet.insertRows(InsertMethod method,
int rowPos,
int startCol,
List<?> values)
Inserts rows into this sheet at given position and sets given values to their cells.
|
void |
Sheet.insertRows(InsertMethod method,
String startCellRef,
List<?> values)
Inserts rows into this sheet at given position and sets given values to their cells.
|
void |
Sheet.moveColumn(int columnToMoveIndex,
InsertMethod method,
int toPositionIndex)
Moves column to given position within this sheet.
|
void |
Sheet.moveColumn(int columnToMoveIndex,
InsertMethod method,
String toPositionRef)
Moves column to given position within this sheet.
|
void |
Sheet.moveColumn(String columnToMoveRef,
InsertMethod method,
int toPositionIndex)
Moves column to given position within this sheet.
|
void |
Sheet.moveColumn(String columnToMoveRef,
InsertMethod method,
String toPositionRef)
Moves column to given position within this sheet.
|
| Modifier and Type | Method and Description |
|---|---|
static InsertMethod |
InsertMethod.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InsertMethod[] |
InsertMethod.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Copyright © 2022. All rights reserved.