void |
Worksheet.addCellRange(List<Object> values,
Address startAddress,
Address endAddress) |
Adds a list of object values to a defined cell range.
|
void |
Worksheet.addCellRange(List<Object> values,
Address startAddress,
Address endAddress,
Style style) |
Adds a list of object values to a defined cell range.
|
static Range |
Range.buildRange(Address startAddress,
Address endAddress) |
Method to build a range object from two addresses.
|
static Cell |
BasicFormulas.Ceil(Address address,
int decimals) |
Returns a cell with a ceil formula
|
static Cell |
BasicFormulas.Ceil(Worksheet target,
Address address,
int decimals) |
Returns a cell with a ceil formula
|
int |
Address.compareTo(Address other) |
Compares two addresses and returns whether the passed one is bigger or not.
|
static Cell |
BasicFormulas.Floor(Address address,
int decimals) |
Returns a cell with a floor formula
|
static Cell |
BasicFormulas.Floor(Worksheet target,
Address address,
int decimals) |
Returns a cell with a floor formula
|
Cell |
Worksheet.getCell(Address address) |
Gets the cell of the specified address
|
static List<Address> |
Cell.getCellRange(Address startAddress,
Address endAddress) |
Get a list of cell addresses from a cell range
|
boolean |
Worksheet.hasCell(Address address) |
Gets whether the specified address exists in the worksheet.
|
String |
Worksheet.mergeCells(Address startAddress,
Address endAddress) |
Merges the defined cell range
|
static Cell |
BasicFormulas.Round(Address address,
int decimals) |
Returns a cell with a round formula
|
static Cell |
BasicFormulas.Round(Worksheet target,
Address address,
int decimals) |
Returns a cell with a round formula
|
void |
Cell.setCellAddress2(Address address) |
Sets the combined cell address as class
|
void |
Worksheet.setSelectedCells(Address startAddress,
Address endAddress) |
Sets the selected cells on this worksheet
|
static Cell |
BasicFormulas.VLookup(Address address,
Range range,
int columnIndex,
boolean exactMatch) |
Function to generate a Vlookup as Excel function
|
static Cell |
BasicFormulas.VLookup(Worksheet queryTarget,
Address address,
Worksheet rangeTarget,
Range range,
int columnIndex,
boolean exactMatch) |
Function to generate a Vlookup as Excel function
|