@Deprecated
public interface ExcelTemplateService
| Modifier and Type | Method and Description |
|---|---|
void |
addTypeSheet(java.lang.String typeName,
Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.createTypeSheet(Workbook, String) instead |
Row |
createEmptyRow(Sheet sheet)
Deprecated.
since 1808. Use
ExcelSheetService.createEmptyRow(Sheet) instead |
Sheet |
createTypeSheet(java.lang.String typeCode,
Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.createTypeSheet(Workbook, String) instead |
Workbook |
createWorkbook(java.io.InputStream is)
Deprecated.
since 1808. Use
ExcelWorkbookService.createWorkbook(InputStream) instead |
int |
findColumnIndex(Sheet typeSystemSheet,
Sheet sheet,
SelectedAttribute selectedAttribute)
Deprecated.
since 1808. Use
ExcelSheetService.findColumnIndex(Sheet, Sheet, ExcelAttribute) instead |
java.lang.String |
findSheetNameForTypeCode(java.lang.String typeCode,
Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.findSheetNameForTypeCode(Workbook, String) instead |
java.lang.String |
findTypeCodeForSheetName(java.lang.String sheetName,
Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.findTypeCodeForSheetName(Workbook, String) instead |
java.lang.String |
getAttributeDisplayName(AttributeDescriptorModel attributeDescriptorModel,
java.lang.String isoCode)
Deprecated.
since 1808. Use
DisplayNameAttributeNameFormatter.format(ExcelAttributeContext) instead |
java.lang.String |
getCellValue(Cell cell)
Deprecated.
since 1808. Use
ExcelCellService.getCellValue(Cell) instead |
java.util.List<SelectedAttribute> |
getHeaders(Sheet typeSystemSheet,
Sheet typeSheet)
Deprecated.
since 1808. Use
ExcelHeaderService.getHeaders(Sheet, Sheet) instead |
java.util.List<SelectedAttributeQualifier> |
getSelectedAttributesQualifiers(Sheet typeSystemSheet,
Sheet typeSheet)
Deprecated.
since 1808. Use
ExcelHeaderService.getSelectedAttributesQualifiers(Sheet, Sheet) instead |
java.util.List<Sheet> |
getSheets(Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.getSheets(Workbook) instead |
java.util.List<java.lang.String> |
getSheetsNames(Workbook workbook)
Deprecated.
since 1808. Use
ExcelSheetService.getSheetsNames(Workbook) instead |
Sheet |
getTypeSystemSheet(Workbook workbook)
Deprecated.
since 1808. Use
ExcelWorkbookService.getMetaInformationSheet(Workbook) instead |
void |
insertAttributeHeader(Sheet sheet,
SelectedAttribute selectedAttribute,
int columnIndex)
Deprecated.
since 1808. Use
ExcelHeaderService.insertAttributeHeader(Sheet, ExcelAttribute, int) instead |
void |
insertAttributesHeader(Sheet sheet,
java.util.Collection<SelectedAttribute> selectedAttributes)
Deprecated.
since 1808. Use
ExcelHeaderService.insertAttributesHeader(Sheet, Collection) instead |
void |
insertAttributeValue(Cell cell,
java.lang.Object object)
Deprecated.
since 1808. Use
ExcelCellService.insertAttributeValue(Cell, Object) instead |
Workbook createWorkbook(java.io.InputStream is)
ExcelWorkbookService.createWorkbook(InputStream) insteadis - Input stream of excel fileWorkbook object which represents excel fileSheet getTypeSystemSheet(Workbook workbook)
ExcelWorkbookService.getMetaInformationSheet(Workbook) insteadworkbook - Workbook object which represents excel fileSheet which contains information about type systemjava.util.List<java.lang.String> getSheetsNames(Workbook workbook)
ExcelSheetService.getSheetsNames(Workbook) insteadworkbook - Workbook object which represents excel filejava.util.List<Sheet> getSheets(Workbook workbook)
ExcelSheetService.getSheets(Workbook) insteadworkbook - Workbook object which represents excel filejava.lang.String getCellValue(Cell cell)
ExcelCellService.getCellValue(Cell) insteadcell - Celljava.util.List<SelectedAttribute> getHeaders(Sheet typeSystemSheet, Sheet typeSheet)
ExcelHeaderService.getHeaders(Sheet, Sheet) insteadtypeSystemSheet - Sheet contains metainformation about attributes for each type sheetstypeSheet - Sheet contains data for given sheetjava.util.List<SelectedAttributeQualifier> getSelectedAttributesQualifiers(Sheet typeSystemSheet, Sheet typeSheet)
ExcelHeaderService.getSelectedAttributesQualifiers(Sheet, Sheet) insteadtypeSystemSheet - Sheet contains metainformation about attributes for each type sheetstypeSheet - Sheet contains data for given sheetint findColumnIndex(Sheet typeSystemSheet,
Sheet sheet,
SelectedAttribute selectedAttribute)
ExcelSheetService.findColumnIndex(Sheet, Sheet, ExcelAttribute) insteadtypeSystemSheet - - sheet which contains information about type systemsheet - sheet for current typeselectedAttribute - attribute for which column index should be found.Sheet createTypeSheet(java.lang.String typeCode,
Workbook workbook)
ExcelSheetService.createTypeSheet(Workbook, String) insteadtypeCode - a new sheet nameworkbook - workbook which will be extended by a new sheetjava.lang.String findTypeCodeForSheetName(java.lang.String sheetName,
Workbook workbook)
ExcelSheetService.findTypeCodeForSheetName(Workbook, String) insteadsheetName - sheet name.workbook - workbook.java.lang.String findSheetNameForTypeCode(java.lang.String typeCode,
Workbook workbook)
ExcelSheetService.findSheetNameForTypeCode(Workbook, String) insteadtypeCode - type codeworkbook - workbookvoid addTypeSheet(java.lang.String typeName,
Workbook workbook)
ExcelSheetService.createTypeSheet(Workbook, String) insteadtypeName - a new sheet name.workbook - workbook which will be extended by a new sheetvoid insertAttributeHeader(Sheet sheet,
SelectedAttribute selectedAttribute,
int columnIndex)
ExcelHeaderService.insertAttributeHeader(Sheet, ExcelAttribute, int) insteadsheet - where the value will be insertedselectedAttribute - a pojo which allows to retrieve value to insertcolumnIndex - index of a column for inserted valuevoid insertAttributesHeader(Sheet sheet,
java.util.Collection<SelectedAttribute> selectedAttributes)
ExcelHeaderService.insertAttributesHeader(Sheet, Collection) insteadinsertAttributeHeader(Sheet, SelectedAttribute, int) It is possible to inserts all values
to the header at once instead of invoking insertAttributeHeader(Sheet, SelectedAttribute, int) for every
attribute separatelysheet - where the value will be insertedselectedAttributes - a pojo which allows to retrieve value to insertvoid insertAttributeValue(Cell cell,
java.lang.Object object)
ExcelCellService.insertAttributeValue(Cell, Object) insteadcell - where the value will be insertedobject - a value to insertRow createEmptyRow(Sheet sheet)
ExcelSheetService.createEmptyRow(Sheet) insteadsheet - where the row will be createdjava.lang.String getAttributeDisplayName(AttributeDescriptorModel attributeDescriptorModel, java.lang.String isoCode)
DisplayNameAttributeNameFormatter.format(ExcelAttributeContext) insteadattributeDescriptorModel - attribute descriptor of selected attributeisoCode - - isoCode of languageCopyright © 2018 SAP SE. All Rights Reserved.