Skip navigation links
A B C D E F G H I M N O P R S T U V W 

A

addCell(Object) - Method in class eu.easyrpa.openframework.google.sheets.Row
Creates a new cell at the end of this row and sets to it given value.
addColumn(List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Adds new column at the end of sheet and sets given values to it's cells starting from row with index 0.
addColumn(String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Adds new column at the end of sheet and sets given values to it's cells starting from row defined by startRowRef.
addColumn(int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Adds new column at the end of sheet and sets given values to it's cells starting from row defined by startRow.
addRecord(T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Adds a new record at the end of this table.
addRecords(List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Adds list of records at the end of this table.
apply() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Applies this style to the current cell.
applyTo(Cell, boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Applies this style to given cell.

B

background(Color) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets background color of cell.
batchUpdate(Consumer<SpreadsheetUpdateRequestsBatch>) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Allows to put a set of spreadsheet update requests into one batch.
bold(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets whether cells font should be bold.
borderColors(Color...) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets colors for all cell borders (top, right, bottom and left).
borders(BorderStyle...) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets styles of all cell borders (top, right, bottom and left).
BorderStyle - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify the style of cell border.

C

Cell - Class in eu.easyrpa.openframework.google.sheets
Represents specific cell of Spreadsheet document and provides functionality to work with it.
Cell(Sheet, int, int) - Constructor for class eu.easyrpa.openframework.google.sheets.Cell
Creates a new instance of cell.
CellRange - Class in eu.easyrpa.openframework.google.sheets
Keeps information that identifies specific rectangle area of sheet cells.
CellRange(String) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRange
Creates a new range based on given A1-style string.
CellRange(int, int, int, int) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRange
Creates a new sheet-free range based on given row and column indexes.
CellRange(String, int, int, int, int) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRange
Creates a new sheet-based range based on given row and column indexes.
CellRange(GridRange) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRange
Creates a new range based on given Google GridRange.
CellRef - Class in eu.easyrpa.openframework.google.sheets
Keeps information that identifies specific cell of the sheet.
CellRef(String) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRef
Creates a new reference based on given A1-style string.
CellRef(int, int) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRef
Creates a new sheet-free reference based on given row and column indexes.
CellRef(String, int, int) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRef
Creates a new sheet-based reference based on given row and column indexes.
CellRef(String, int, int, boolean, boolean) - Constructor for class eu.easyrpa.openframework.google.sheets.CellRef
Creates a new sheet-based reference.
CellStyle - Class in eu.easyrpa.openframework.google.sheets
Keeps cell style parameters and allows to easily apply them to different cells even from different Spreadsheet documents.
CellStyle() - Constructor for class eu.easyrpa.openframework.google.sheets.CellStyle
Creates cell style object with default parameters.
CellStyle(Cell) - Constructor for class eu.easyrpa.openframework.google.sheets.CellStyle
Creates cell style object with style parameters of given cell.
cleanColumn(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified column of this sheet.
cleanColumn(Column) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified column of this sheet.
cleanColumn(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified column of this sheet.
cleanRow(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified row of this sheet.
cleanRow(Row) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified row of this sheet.
cleanRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes all cells contained in the specified row of this sheet.
clearCache() - Method in class eu.easyrpa.openframework.google.sheets.Table
Clears records cache.
cloneAs(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Clones this sheet and place it to the end of Spreadsheet document.
color(Color) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets color of cells font.
Colors - Enum in eu.easyrpa.openframework.google.sheets.constants
Provides list of default colors.
Column - Class in eu.easyrpa.openframework.google.sheets
Represents specific column of Spreadsheet document and provides functionality to work with it.
Column(Sheet, int) - Constructor for class eu.easyrpa.openframework.google.sheets.Column
Creates a new instance of column.
ColumnFormatter<T> - Interface in eu.easyrpa.openframework.google.sheets.function
Allows to perform formatting for cells of specific table column on the sheet.
commit() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Sends all previously done changes to Google server and gets back the actual content of this spreadsheet after applying these changes on Google side.
convertNumToColString(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Takes in a 0-based base-10 column and returns its symbol representation.
copyTo(SpreadsheetDocument) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Copies the content of this sheet to another sheet with the same format.
createCell(int) - Method in class eu.easyrpa.openframework.google.sheets.Column
Creates a new cell at the given row index and returns its representing object.
createCell(int) - Method in class eu.easyrpa.openframework.google.sheets.Row
Creates a new cell at the given column index and returns its representing object.
createRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Creates a new row at the given index and return the high level representation.
createSheet(String) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Creates a new sheet for this Spreadsheet document and return the high level representation.

D

DAY_MILLISECONDS - Static variable in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 

E

equals(Object) - Method in class eu.easyrpa.openframework.google.sheets.Cell
 
equals(Object) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
 
equals(Object) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
 
eu.easyrpa.openframework.google.sheets - package 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.annotations - package eu.easyrpa.openframework.google.sheets.annotations
Annotations to tie Google Spreadsheet document data with plain java objects.
eu.easyrpa.openframework.google.sheets.constants - package eu.easyrpa.openframework.google.sheets.constants
Constants and enumerations used during Google Spreadsheet document manipulation and styling.
eu.easyrpa.openframework.google.sheets.exceptions - package eu.easyrpa.openframework.google.sheets.exceptions
Exceptions thrown during working with Google Spreadsheet documents.
eu.easyrpa.openframework.google.sheets.function - package eu.easyrpa.openframework.google.sheets.function
Custom logic support for tying of Google Spreadsheet document data with plain java objects.
eu.easyrpa.openframework.google.sheets.utils - package eu.easyrpa.openframework.google.sheets.utils
Miscellaneous utility classes.
exportAsXLSX() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets content of this Spreadsheet document as XLSX file.

F

FieldMapper - Interface in eu.easyrpa.openframework.google.sheets.function
Allows to extract value for some specific field of record from table row data.
findCell(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches cell with given value on the sheet.
findCell(MatchMethod, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches cell with given value on the sheet.
findRecord(Predicate<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Iterates over all records starting from the first till the moment when isSatisfy is return true for some record.
findRecordIndex(Predicate<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Iterates over all records starting from the first till the moment when isSatisfy is return true for some record.
findRow(String...) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches row on the sheet with given values in cells.
findRow(MatchMethod, String...) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches row on the sheet with given values in cells.
findSheet(String...) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Finds the sheet with a row that contains all given values and active it.
findSheet(MatchMethod, String...) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Finds the sheet with a row that contains all given values and active it.
findTable(Class<T>, String...) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches table on the sheet with given keywords in header.
findTable(Class<T>, MatchMethod, String...) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Searches table on the sheet with given keywords in header.
font(FontFamily) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets font of cells.
FontFamily - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify the font family name for specific cells of Google Spreadsheet.
fontSize(int) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets size of cells font in points.
format(NumberFormats) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets cells number format.
format(String) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets cells custom number format using pattern.
format(Cell, String, T) - Method in interface eu.easyrpa.openframework.google.sheets.function.ColumnFormatter
Formats cells based on some specific logic.
format(Cell, String, int, List<T>) - Method in interface eu.easyrpa.openframework.google.sheets.function.TableFormatter
Formats cells based on some specific logic.
formatAsRowColString() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Formats this range as string in R1C1-style.
formatAsRowColString() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Formats this cell reference as string in R1C1-style.
formatAsRowColString(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Formats this cell reference as string in R1C1-style.
formatAsString() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Formats this range as string in A1-style.
formatAsString() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Formats this cell reference as string in A1-style.
formatAsString(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Formats this cell reference as string in A1-style.

G

get() - Method in enum eu.easyrpa.openframework.google.sheets.constants.Colors
Gets related color object.
getActiveSheet() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets current active sheet.
getBackground() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getBorderColors() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getBorders() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getBottomRow() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of the last row of this table.
getCell(String) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the cell of this column represented by given reference.
getCell(int) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the cell of this column represented by given row index.
getCell(String) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the cell of this row represented by given reference.
getCell(int) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the cell of this row represented by given column index.
getCell(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the cell represented by given reference.
getCell(int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the cell represented by given row and column indexes.
getCellFormat() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getCol() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Gets column index of this cell reference.
getColor() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getColumn(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets column of this sheet represented by given reference.
getColumn(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets column of this sheet represented by given index.
getColumnIndex() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets column index of this cell.
getColumnNameToIndexMap() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets map that maps column titles to its ordering number (0-based).
getColumnsCount() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets amount of columns in this range (range width).
getDocument() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets parent Spreadsheet document.
getDocument() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets parent Spreadsheet document.
getDocument() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets parent Spreadsheet document.
getDocument() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets parent Spreadsheet document.
getFirstCellIndex() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets index of the first defined cell on this row.
getFirstCol() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets index of the left column of this range.
getFirstColumnIndex() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets index of the first defined column on the sheet.
getFirstRow() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets index of the top row of this range.
getFirstRowIndex() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets row index of the first defined cell at this column.
getFirstRowIndex() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets index of the first defined row on the sheet.
getFont() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getFontSize() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getFormatPattern() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getFormatType() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getFormula() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets string with specified for this cell formula.
getGCell() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Returns underlay Google API object representing this cell.
getGRow() - Method in class eu.easyrpa.openframework.google.sheets.Row
Returns underlay Google API object representing this row.
getGSheet() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Returns underlay Google API object representing this sheet.
getGSpreadsheet() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets underlay Google object representing this spreadsheet.
getHeaderBottomRow() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of the bottom row of this table header.
getHeaderLeftCol() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of the left column of this table header.
getHeaderRightCol() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of the right column of this table header.
getHeaderTopRow() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of the top row of this table header.
getHorizontalAlignment() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getId() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets unique identifier of this sheet.
getId() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets unique identifier of this Spreadsheet document.
getIndex() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets index of this column.
getIndex() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets index of this row.
getIndex() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets index of this sheet within parent Spreadsheet document.
getJavaCalendar(double, TimeZone, boolean) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Get EXCEL date as Java Calendar with given time zone.
getJavaDate(double, TimeZone) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given an Spreadsheet date with using 1900 date windowing, and converts it to a java.util.Date.
getJavaDate(double) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given an Spreadsheet date with using 1900 date windowing, and converts it to a java.util.Date.
getJavaDate(double, TimeZone, boolean) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given an Spreadsheet date with either 1900 or 1904 date windowing, converts it to a java.util.Date.
getLastCellIndex() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets index of the last cell of this row.
getLastCol() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets index of the right column of this range.
getLastColumnIndex() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets index of the last defined column contained on the sheet.
getLastRow() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets index of the bottom row of this range.
getLastRowIndex() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets row index of the last cell of this column.
getLastRowIndex() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets index of the last row contained on the sheet.
getLocalDateTime(double) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given an Spreadsheet date with using 1900 date windowing, and converts it to a java.time.LocalDateTime.
getLocalDateTime(double, boolean) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given an Spreadsheet date with either 1900 or 1904 date windowing, converts it to a java.time.LocalDateTime.
getMergedRegion() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets merged region where this cell is hit.
getMergedRegionCell() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets top-left cell of merged region where this cell is hit.
getMergedRegions() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets list of all existing merged regions on this sheet.
getName() - Method in enum eu.easyrpa.openframework.google.sheets.constants.FontFamily
Gets font family name.
getName() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the name of this sheet.
getName() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets name for this Spreadsheet document.
getPadding() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getRange(String, String) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of cells range of this column.
getRange(String, String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of cells range on this column and converts them to the type specified by valueType.
getRange(int, int) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of cells range on this column.
getRange(int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of cells range on this column and converts them to the type specified by valueType.
getRange(String, String) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of cells range of this row.
getRange(String, String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of cells range on this row and converts them to the type specified by valueType.
getRange(int, int) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of cells range on this row.
getRange(int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of cells range on this row and converts them to the type specified by valueType.
getRange(String, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets values of cells range on this sheet.
getRange(String, String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets values of cells range on this sheet and converts them to the type specified by valueType.
getRange(int, int, int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets values of cells range on this sheet.
getRange(int, int, int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets values of cells range on this sheet and converts them to the type specified by valueType.
getRecord(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets specific record by its index.
getRecords() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets full list of records that are contained in this table.
getRecordsCount() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets amount of records that contained in this table.
getReference() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets reference to this cell.
getReference() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets reference to this column.
getReference() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets reference to this row.
getRotation() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getRow() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Gets row index of this cell reference.
getRow(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the row represented by given reference.
getRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the row represented with given index.
getRowIndex() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets row index of this cell.
getRowsCount() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets amount of rows in this range (range height).
getSheet() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets parent sheet.
getSheet() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets parent sheet.
getSheet() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets parent sheet.
getSheet() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets parent sheet.
getSheetName() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets the name of related sheet.
getSheetName() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Gets the name of related sheet.
getSheetNames() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets names of all sheets
getSheetsService() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets Google Sheets service.
getSpreadsheet(String) - Method in class eu.easyrpa.openframework.google.sheets.GoogleSheets
Gets content of Google spreadsheet file with specified file ID.
getSpreadsheetDate(LocalDate) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given a LocalDate, converts it into a double representing its internal Spreadsheet representation, which is the number of days since 1/1/1900.
getSpreadsheetDate(LocalDateTime) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given a LocalDateTime, converts it into a double representing its internal Spreadsheet representation, which is the number of days since 1/1/1900.
getSpreadsheetDate(Date) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given a Date, converts it into a double representing its internal Spreadsheet representation, which is the number of days since 1/1/1900.
getStyle() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets current style of this cell.
getTable(String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets table located at this sheet.
getTable(int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets table located at this sheet.
getTable(String, String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets table located at this sheet.
getTable(int, int, int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets table located at this sheet.
getValue() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets the value of this cell.
getValue(Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Cell
Gets the value of this cell and converts it to the type specified by valueType.
getValue(String) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the value of this column cell by given cell reference.
getValue(String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the value of this column cell by given cell reference and converts it to the type specified by valueType.
getValue(int) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the value of this column cell by given row index.
getValue(int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets the value of this column cell by given row index.
getValue(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.FontFamily
Gets corresponding FontFamily by given font name.
getValue(String) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the value of this row cell by given cell reference.
getValue(String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the value of this row cell by given cell reference and converts it to the type specified by valueType.
getValue(int) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the value of this row cell by given column index.
getValue(int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets the value of this row cell by given column index.
getValue(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the value of this sheet cell by given cell reference.
getValue(String, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the value of this sheet cell by given cell reference and converts it to the type specified by valueType.
getValue(int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the value of this sheet cell by given row and column indexes.
getValue(int, int, Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets the value of this sheet cell by given row and column indexes.
getValues() - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of all column cells.
getValues(Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Gets values of all column cells.
getValues() - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of all row cells.
getValues(Class<T>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Gets values of all row cells.
getValues() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Gets values of all cells on the sheet.
getVerticalAlignment() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
getWrapStrategy() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
GoogleSheets - Class in eu.easyrpa.openframework.google.sheets
Service that provides convenient way to work with Google Sheets API.
GoogleSheets() - Constructor for class eu.easyrpa.openframework.google.sheets.GoogleSheets
Default constructor for GoogleSheets.
GoogleSheets(GoogleServicesProvider) - Constructor for class eu.easyrpa.openframework.google.sheets.GoogleSheets
Constructs GoogleSheets with provided GoogleServicesProvider.
GSheetCellStyle - Annotation Type in eu.easyrpa.openframework.google.sheets.annotations
Defines parameters of style that should be applied to specific cells of Google Spreadsheet document.
GSheetColumn - Annotation Type in eu.easyrpa.openframework.google.sheets.annotations
Defines relation between field of record class and corresponding column or data of table on the sheet.
GSheetTable - Annotation Type in eu.easyrpa.openframework.google.sheets.annotations
Defines common formatting and styling for all cells of table on the sheet.

H

hAlign(HorizontalAlignment) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets horizontal alignment of text in the cell.
hasFormula() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Checks whether formula is specified for this cell.
hashCode() - Method in class eu.easyrpa.openframework.google.sheets.Cell
 
hashCode() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
 
hashCode() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
 
HorizontalAlignment - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify the horizontal alignment of text in a cell.
HOURS_PER_DAY - Static variable in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 

I

indexOf(T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets index of given record.
insertColumn(InsertMethod, String, String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts one column into this sheet at given position and sets given values to it's cells starting from row defined by startRowRef
insertColumn(InsertMethod, int, int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts one column into this sheet at given position and sets given values to it's cells starting from row defined by startRow
InsertMethod - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify position for insertion relative to some elements.
insertRecord(InsertMethod, T, T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Inserts new record into this table at given position.
insertRecord(InsertMethod, int, T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Inserts new record into this table at given position.
insertRecords(InsertMethod, T, List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Inserts list of records into this table at given position.
insertRecords(InsertMethod, int, List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Inserts list of records into this table at given position.
insertRows(InsertMethod, String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts rows into this sheet at given position and sets given values to their cells.
insertRows(InsertMethod, int, int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts rows into this sheet at given position and sets given values to their cells.
insertTable(List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts table into this sheet at position starting from cell "A1" (0 - row index and 0 - column index)
insertTable(String, List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts table into this sheet at position starting from cell defined by topLeftCellRef (top-left cell of the table)
insertTable(int, int, List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Inserts table into this sheet at position starting from cell defined by startRow and startCol (top-left cell of the table)
intersects(CellRange) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Determines whether this range intersects with given CellRange.
isBold() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
isColAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Gets whether column index is absolute.
isEmpty() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Checks whether this cell is empty.
isEmpty() - Method in class eu.easyrpa.openframework.google.sheets.Column
Checks whether this column is empty.
isFirstColAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets whether index of the left column is absolute.
isFirstRowAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets whether index of the top row is absolute.
isInRange(int, int) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Determines if the given coordinates lie within the bounds of this range.
isInRange(CellRef) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Determines if the given CellRef lies within the bounds of this range.
isInRange(CellRange) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Determines if the given CellRange lies within the bounds of this range.
isItalic() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
isLastColAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets whether index of the right column is absolute.
isLastRowAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Gets whether index of the bottom row is absolute.
isMerged() - Method in class eu.easyrpa.openframework.google.sheets.Cell
Checks whether this cell is merged with other neighbour cells.
isRowAbsolute() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Gets whether row index is absolute.
isSheetNameDefined() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Checks whether related sheet name is defined for this range (sheet-based or not).
isSheetNameDefined() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Checks whether related sheet name is defined for this cell reference (sheet-based or not).
isStrikeout() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
isUnderline() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
isValidSpreadsheetDate(double) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
Given a double, checks if it is a valid Spreadsheet date.
isVertical() - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
 
italic(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets whether cells font should be italic.
iterator() - Method in class eu.easyrpa.openframework.google.sheets.Column
Returns an iterator of objects representing existing cells of this column.
iterator() - Method in class eu.easyrpa.openframework.google.sheets.Row
Returns an iterator of objects representing existing cells of this row.
iterator() - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Returns an iterator of objects representing existing rows on this sheet.
iterator() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
 
iterator() - Method in class eu.easyrpa.openframework.google.sheets.Table
Gets an iterator of records contained in this table.

M

map(String, List<Object>, int) - Method in interface eu.easyrpa.openframework.google.sheets.function.FieldMapper
Maps table row data to the value of given field.
match(String, String) - Method in enum eu.easyrpa.openframework.google.sheets.constants.MatchMethod
Performs matching of strings based on current method.
MatchMethod - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify way of matching value strings during comparing.
mergeCells(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Merges cells range of this sheet by given reference.
mergeCells(CellRange) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Merges given cells range of this sheet.
mergeCells(String, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Merges cells range of this sheet.
mergeCells(int, int, int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Merges cells range of this sheet.
MINUTES_PER_HOUR - Static variable in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 
moveColumn(String, InsertMethod, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Moves column to given position within this sheet.
moveColumn(String, InsertMethod, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Moves column to given position within this sheet.
moveColumn(int, InsertMethod, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Moves column to given position within this sheet.
moveColumn(int, InsertMethod, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Moves column to given position within this sheet.
moveTo(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Moves this sheet to a new position.

N

NumberFormats - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify required number format for specific cell of Google Spreadsheet document.

O

onAuthorization(AuthorizationPerformer) - Method in class eu.easyrpa.openframework.google.sheets.GoogleSheets
Allows to override the way how this code informs the user that it wishes to act on his behalf and obtain corresponding access token from Google.

P

padding(int...) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets amounts of padding around the cell, in pixels.
putRange(String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Sets given values to cells range of this column which starts from cell defined by startRef.
putRange(int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Sets given values to cells range of this column which starts from cell with row index defined by startRow.
putRange(String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Sets given values to cells range of this row which starts from cell defined by startRef.
putRange(int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Sets given values to cells range of this row which starts from cell with column index defined by startCol.
putRange(String, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets given values to cells range of this sheet which starts from cell (top-left) defined by startRef.
putRange(int, int, List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets given values to cells range of this sheet which starts from cell (top-left) defined by startRow and startCol.

R

reload() - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Gets an actual Spreadsheet data from Google Drive.
removeColumn(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a column from this sheet and shifts all followed columns to one position left.
removeColumn(Column) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a column from this sheet and shifts all followed columns to one position left.
removeColumn(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a column from this sheet and shifts all followed columns to one position left.
removeRecord(T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Removes given record and corresponding row from this table.
removeRecords(List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Removes given records and corresponding rows from this table.
removeRow(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a row from this sheet and shifts all rows below to one position up.
removeRow(Row) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a row from this sheet and shifts all rows below to one position up.
removeRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Removes a row from this sheet and shifts all rows below to one position up.
removeSheet(String) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Removes sheet with the given name.
removeSheet(Sheet) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Removes given sheet.
rename(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Changes the name of this sheet.
rename(String) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Renames this Spreadsheet document.
rotation(int) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets degree of rotation for the text in the cell.
Row - Class in eu.easyrpa.openframework.google.sheets
Represents specific row of Spreadsheet document and provides functionality to work with it.
Row(Sheet, int) - Constructor for class eu.easyrpa.openframework.google.sheets.Row
Creates a new instance of row.

S

SECONDS_PER_DAY - Static variable in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 
SECONDS_PER_MINUTE - Static variable in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 
secret(String) - Method in class eu.easyrpa.openframework.google.sheets.GoogleSheets
Sets explicitly the alias of secret vault entry with OAuth 2.0 Client JSON necessary for authentication on the Google server.
secret(String, String) - Method in class eu.easyrpa.openframework.google.sheets.GoogleSheets
Sets explicitly the secret OAuth 2.0 Client JSON necessary for authentication on the Google server.
selectSheet(int) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Sets the sheet with given index as active and return it.
selectSheet(String) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Sets the sheet with given name as active and return it.
setAutoCommit(boolean) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Sets automatic sending of change requests to Google server on/off.
setBottomRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Sets index of the last row of this table explicitly.
setCalendar(Calendar, int, int, boolean) - Static method in class eu.easyrpa.openframework.google.sheets.utils.SpreadsheetDateUtil
 
setCol(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Sets column index for this cell reference.
setColAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Sets column index as absolute.
setColumnWidth(String, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets the width of column in pixels.
setColumnWidth(int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets the width of column in pixels.
setFirstCol(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the left column for this range.
setFirstColAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the left column as absolute.
setFirstRow(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the top row for this range.
setFirstRowAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the top row as absolute.
setFormula(String) - Method in class eu.easyrpa.openframework.google.sheets.Cell
Sets formula for this cell.
setHeaderBottomRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Sets new index of the bottom row of this table header.
setHeaderLeftCol(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Sets new index of the left column of this table header.
setHeaderRightCol(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Sets new index of the right column of this table header.
setHeaderTopRow(int) - Method in class eu.easyrpa.openframework.google.sheets.Table
Sets new index of the top row of this table header.
setLastCol(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the right column for this range.
setLastColAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the right column as absolute.
setLastRow(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the bottom row for this range.
setLastRowAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets index of the bottom row as absolute.
setRow(int) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Sets row index for this cell reference.
setRowAbsolute(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Sets row index as absolute.
setSheetName(String) - Method in class eu.easyrpa.openframework.google.sheets.CellRange
Sets the name of related sheet and makes this range as sheet-based.
setSheetName(String) - Method in class eu.easyrpa.openframework.google.sheets.CellRef
Sets the name of related sheet and makes this cell reference as sheet-based.
setStyle(CellStyle) - Method in class eu.easyrpa.openframework.google.sheets.Cell
Sets and applies specific style for this cell.
setValue(Object) - Method in class eu.easyrpa.openframework.google.sheets.Cell
Sets the value for this cell.
setValue(String, Object) - Method in class eu.easyrpa.openframework.google.sheets.Column
Sets the value of this column cell by given cell reference.
setValue(int, Object) - Method in class eu.easyrpa.openframework.google.sheets.Column
Sets the value of this column cell by given row index.
setValue(String, Object) - Method in class eu.easyrpa.openframework.google.sheets.Row
Sets the value of this row cell by given cell reference.
setValue(int, Object) - Method in class eu.easyrpa.openframework.google.sheets.Row
Sets the value of this row cell by given column index.
setValue(String, Object) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets the value of the sheet cell by given cell reference.
setValue(int, int, Object) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets the value of the sheet cell by given row and column indexes.
setValues(List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Column
Sets given values to cells range of this column which starts from cell with row index 0.
setValues(List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Row
Sets given values to cells range of this row which starts from cell with column index 0.
setValues(List<?>) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Sets given values to cells range of this sheet which starts from cell "A1" (0 - row index and 0 - column index).
Sheet - Class in eu.easyrpa.openframework.google.sheets
Represents specific sheet of Spreadsheet document and provides functionality to work with it and its content.
Sheet(SpreadsheetDocument, int) - Constructor for class eu.easyrpa.openframework.google.sheets.Sheet
Creates a new Sheet instance.
SpreadsheetDateUtil - Class in eu.easyrpa.openframework.google.sheets.utils
Contains methods for dealing with Spreadsheet dates.
SpreadsheetDocument - Class in eu.easyrpa.openframework.google.sheets
Represents Google Spreadsheet document and provides functionality to work with it and its content.
SpreadsheetDocument(Sheets, String) - Constructor for class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Creates a new Spreadsheet document for Google Spreadsheet with given file ID.
SpreadsheetException - Exception in eu.easyrpa.openframework.google.sheets.exceptions
Google Spreadsheet runtime exception.
SpreadsheetException(String, Throwable) - Constructor for exception eu.easyrpa.openframework.google.sheets.exceptions.SpreadsheetException
Constructs a new Google Spreadsheet exception with the specified detail message and cause.
SpreadsheetException(Throwable) - Constructor for exception eu.easyrpa.openframework.google.sheets.exceptions.SpreadsheetException
Constructs a new Google Spreadsheet exception with the specified cause.
strikeout(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets whether cells font should be strikeout.

T

Table<T> - Class in eu.easyrpa.openframework.google.sheets
Represents rectangle area of cells on the sheet where the top row or rows has titles of corresponding columns.
Table(Sheet, int, int, List<T>) - Constructor for class eu.easyrpa.openframework.google.sheets.Table
Builds a new table on the given sheet at position defined by topRow and leftCol (top-left cell of the table).
Table(Sheet, int, int, int, int, Class<T>) - Constructor for class eu.easyrpa.openframework.google.sheets.Table
Creates a new instance of table that is defined by existing cells range on specified sheet.
TableFormatter<T> - Interface in eu.easyrpa.openframework.google.sheets.function
Allows to perform formatting for cells of table on the sheet.
toString() - Method in class eu.easyrpa.openframework.google.sheets.CellRange
 
toString() - Method in class eu.easyrpa.openframework.google.sheets.CellRef
 
trimLeadingAndTrailingSpaces() - Method in class eu.easyrpa.openframework.google.sheets.Table
Analyzes content of leading and trailing columns and if these columns are empty shifts indexes of left and right columns to exclude them from this table bounds.

U

underline(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets whether cell font should be underlined.
unmergeCells(String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Unmerges all merged regions on this sheet that intersects with given cells range.
unmergeCells(CellRange) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Unmerges all merged regions on this sheet that intersects with given cells range.
unmergeCells(String, String) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Unmerges all merged regions on this sheet that intersects with given cells range.
unmergeCells(int, int, int, int) - Method in class eu.easyrpa.openframework.google.sheets.Sheet
Unmerges all merged regions on this sheet that intersects with given cells range.
updateRecord(T) - Method in class eu.easyrpa.openframework.google.sheets.Table
Transfers changes that have been done within given record to corresponding row of the sheet.
updateRecords(List<T>) - Method in class eu.easyrpa.openframework.google.sheets.Table
Transfers changes that have been done within given records to corresponding rows of the sheet.

V

vAlign(VerticalAlignment) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets vertical alignment of text in the cell.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.BorderStyle
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.Colors
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.FontFamily
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.HorizontalAlignment
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.InsertMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.MatchMethod
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.NumberFormats
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.VerticalAlignment
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum eu.easyrpa.openframework.google.sheets.constants.WrapStrategy
Returns the enum constant of this type with the specified name.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.BorderStyle
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.Colors
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.FontFamily
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.HorizontalAlignment
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.InsertMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.MatchMethod
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.NumberFormats
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.VerticalAlignment
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum eu.easyrpa.openframework.google.sheets.constants.WrapStrategy
Returns an array containing the constants of this enum type, in the order they are declared.
vertical(boolean) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets whether the text in the cell should be displayed vertically.
VerticalAlignment - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify the vertical alignment of text in a cell.

W

withOneBatch(Consumer<SpreadsheetDocument>) - Method in class eu.easyrpa.openframework.google.sheets.SpreadsheetDocument
Collects all changes are done within given lambda and sends them as one batch to Google server in the end.
wrapStrategy(WrapStrategy) - Method in class eu.easyrpa.openframework.google.sheets.CellStyle
Sets how text in the cell should wrap.
WrapStrategy - Enum in eu.easyrpa.openframework.google.sheets.constants
Helps to identify how to wrap text in a cell.
A B C D E F G H I M N O P R S T U V W 
Skip navigation links

Copyright © 2022. All rights reserved.