Modifier and Type | Method and Description |
---|---|
Sheet |
Range.getSheet()
Returns the sheet where this range is contained
|
Sheet |
SpreadSheet.getSheet(int index)
Return a sheet with a given index.
|
Sheet |
SpreadSheet.getSheet(String name)
Return a sheet with a given name.
|
Modifier and Type | Method and Description |
---|---|
List<Sheet> |
SpreadSheet.getSheets()
Return all the sheets of the book in a list.
|
Modifier and Type | Method and Description |
---|---|
void |
SpreadSheet.addSheet(Sheet sheet,
int pos)
Add a new sheet in a specific position
|
void |
SpreadSheet.appendSheet(Sheet sheet)
Append a new sheet at the end of the book
|
int |
Sheet.compareTo(Sheet o)
compareTo method, this comparator only compare the names
Note: this class has a natural ordering that is inconsistent with equals.
|
boolean |
SpreadSheet.deleteSheet(Sheet sheet)
Remove the specified sheet of the book.
|
void |
SpreadSheet.setSheet(Sheet sheet,
int pos)
Replace the sheet in the position pos.
|
Modifier and Type | Method and Description |
---|---|
void |
SpreadSheet.sortSheets(Comparator<Sheet> comparator)
Deprecated.
This operation will be discarded for simplicity. You can easily recreate it with client code
|
Copyright © 2023. All rights reserved.