Uses of Interface
io.keikai.model.SSheet
Packages that use SSheet
Package
Description
-
Uses of SSheet in io.keikai.importer
Methods in io.keikai.importer that return SSheetModifier and TypeMethodDescriptionprotected SSheetXlsxImporter.importSheet(XlsxExtractor.XlsxSheetExtractor xSheet) Methods in io.keikai.importer with parameters of type SSheetModifier and TypeMethodDescriptionprotected intXlsxImporter.getAnchorHeightInPx(io.keikai.importer.ShapeJson shapeJson, SSheet sheet) DefaultBookWidgetLoader.getXSSFHeightInPx()protected intXlsxImporter.getAnchorWidthInPx(io.keikai.importer.ShapeJson shapeJson, SSheet sheet) Reference DefaultBookWidgetLoader.getXSSFWidthInPx()protected voidXlsxImporter.importAutoFilter(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected SCellXlsxImporter.importCell(XlsxExtractor.XlsxCellExtractor xCell, int row, SSheet sheet) protected voidXlsxImporter.importChart(io.keikai.importer.ChartSpaceJson chartSpaceJson, XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importColumn(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) [ISO/IEC 29500-1 1st Edition] 18.3.1.13 col (Column Width & Formatting) By experiments, CT_Col is always created in ascending order by min and the range specified by min & max doesn't overlap each other.
For example: <x:cols xmlns:x="http://schemas.openxmlformats.org/spreadsheetml/2006/main"> <x:col min="1" max="1" width="11.28515625" customWidth="1" /> <x:col min="2" max="4" width="11.28515625" hidden="1" customWidth="1" /> <x:col min="5" max="5" width="11.28515625" customWidth="1" /> </x:cols>protected voidXlsxImporter.importConditionalFormatting(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet, List<XlsxExtractor.XlsxExtExtractor> extList) protected voidXlsxImporter.importDrawings(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importMergedRegions(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importPassword(XlsxExtractor.XlsxSheetProtectionExtractor protectionExtractor, SSheet sheet) protected voidXlsxImporter.importPicture(io.keikai.importer.PictureJson pictureJson, XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importPrintArea(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected SRowXlsxImporter.importRow(XlsxExtractor.XlsxRowExtractor xRow, SSheet sheet) protected voidXlsxImporter.importSheetProtection(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importSparklines(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet, List<XlsxExtractor.XlsxExtExtractor> extList) protected voidXlsxImporter.importTables(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet) protected voidXlsxImporter.importValidation(XlsxExtractor.XlsxSheetExtractor xSheet, SSheet sheet, List<XlsxExtractor.XlsxExtExtractor> extList) Reference BookHelper.validate()protected ConditionalFormattingImplXlsxImporter.prepareConditionalFormattingImpl(SSheet sheet, XlsxExtractor.XlsxConditionalFormattingExtractor cf) protected ViewAnchorXlsxImporter.toSparklineViewAnchor(String anchorRef, SSheet sheet) protected ViewAnchorXlsxImporter.toViewAnchor(io.keikai.importer.ShapeJson shapeJson, SSheet sheet) -
Uses of SSheet in io.keikai.model
Methods in io.keikai.model that return SSheetModifier and TypeMethodDescriptionSBook.createSheet(String name) Create a sheetSBook.createSheet(String name, SSheet src) Create a sheet and copy the content from the specified src sheet; note the owner book of the specified src sheet can be different from this book.SBook.createSheet(String name, SSheet src, boolean valueOnly) Create a sheet and copy the content from the specified src sheet; note the owner book of the specified src sheet can be different from this book.ModelEvent.getSheet()SBook.getSheet(int idx) Get sheet at the indexSCell.getSheet()SChart.getSheet()SColumn.getSheet()SColumnArray.getSheet()SConditionalFormatting.getSheet()The sheet on which this conditional formatting coveredSConditionalFormattingRule.getSheet()SDataValidation.getSheet()SheetRegion.getSheet()SPicture.getSheet()SRow.getSheet()SBook.getSheetById(String id) Get the sheet by idSBook.getSheetByName(String name) Get the sheet by nameMethods in io.keikai.model that return types with arguments of type SSheetMethods in io.keikai.model with parameters of type SSheetModifier and TypeMethodDescriptionstatic ModelEventModelEvents.createModelEvent(String name, SBook book, SSheet sheet, Map data) static ModelEventModelEvents.createModelEvent(String name, SSheet sheet) static ModelEventModelEvents.createModelEvent(String name, SSheet sheet, CellRegion region) static ModelEventModelEvents.createModelEvent(String name, SSheet sheet, CellRegion region, Map data) static ModelEventModelEvents.createModelEvent(String name, SSheet sheet, Map data) SBook.createSheet(String name, SSheet src) Create a sheet and copy the content from the specified src sheet; note the owner book of the specified src sheet can be different from this book.SBook.createSheet(String name, SSheet src, boolean valueOnly) Create a sheet and copy the content from the specified src sheet; note the owner book of the specified src sheet can be different from this book.voidSBook.deleteSheet(SSheet sheet) Delete the sheetViewAnchor.getRightBottomAnchor(SSheet sheet) intSBook.getSheetIndex(SSheet sheet) Get the index of sheetvoidSBook.moveSheetTo(SSheet sheet, int index) Move the sheet to new positionvoidSBook.setSheetName(SSheet sheet, String newname) Set the sheet to a new nameConstructors in io.keikai.model with parameters of type SSheetModifierConstructorDescriptionPasteSheetRegion(SSheet sheet, int row, int column, int lastRow, int lastColumn, boolean wholeColumn, boolean wholeRow) SheetRegion(SSheet sheet, int row, int column) SheetRegion(SSheet sheet, int row, int column, int lastRow, int lastColumn) SheetRegion(SSheet sheet, CellRegion region) SheetRegion(SSheet sheet, String areaReference) -
Uses of SSheet in io.keikai.model.impl
Classes in io.keikai.model.impl that implement SSheetMethods in io.keikai.model.impl that return SSheetModifier and TypeMethodDescriptionBookImpl.createSheet(String name) BookImpl.createSheet(String name, SSheet src) BookImpl.createSheet(String name, SSheet src, boolean valueOnly) BookImpl.getSheet(int i) CellImpl.getSheet()ChartImpl.getSheet()ColumnArrayImpl.getSheet()ConditionalFormattingImpl.getSheet()ConditionalFormattingRuleImpl.getSheet()DataValidationImpl.getSheet()PictureImpl.getSheet()RowImpl.getSheet()BookImpl.getSheetById(String id) BookImpl.getSheetByName(String name) Methods in io.keikai.model.impl that return types with arguments of type SSheetMethods in io.keikai.model.impl with parameters of type SSheetModifier and TypeMethodDescriptionprotected voidBookImpl.checkOwnership(SSheet sheet) BookImpl.createSheet(String name, SSheet src) BookImpl.createSheet(String name, SSheet src, boolean valueOnly) voidBookImpl.deleteSheet(SSheet sheet) intBookImpl.getSheetIndex(SSheet sheet) voidBookImpl.moveSheetTo(SSheet sheet, int index) voidBookImpl.setSheetName(SSheet sheet, String newname) Constructors in io.keikai.model.impl with parameters of type SSheetModifierConstructorDescriptionConditionalFormattingImpl(SSheet sheet) PasteCellHelper(SSheet destSheet) -
Uses of SSheet in io.keikai.model.impl.sys.formula
Methods in io.keikai.model.impl.sys.formula that return SSheetMethods in io.keikai.model.impl.sys.formula with parameters of type SSheetModifier and TypeMethodDescriptionvoidFormulaEngineImpl.clearIterationValue(SBook book, SSheet sheet, SCell cell) Constructors in io.keikai.model.impl.sys.formula with parameters of type SSheet -
Uses of SSheet in io.keikai.model.sys.formula
Methods in io.keikai.model.sys.formula that return SSheetModifier and TypeMethodDescriptionFormulaClearContext.getSheet()FormulaEvaluationContext.getSheet()FormulaParseContext.getSheet()Constructors in io.keikai.model.sys.formula with parameters of type SSheetModifierConstructorDescriptionFormulaClearContext(SSheet sheet) FormulaEvaluationContext(SSheet sheet, SCell cell, Ref dependent, int[] offset, boolean externFormula) FormulaEvaluationContext(SSheet sheet, Ref dependent) FormulaEvaluationContext(SSheet sheet, Ref dependent, int[] offset) FormulaParseContext(SBook book, SSheet sheet, SCell cell, String sheetName, Ref dependent, FormulaType formulaType) FormulaParseContext(SBook book, SSheet sheet, SCell cell, String sheetName, Ref dependent, Locale locale, FormulaType formulaType) FormulaParseContext(SSheet sheet, Ref dependent) FormulaParseContext(SSheet sheet, Ref dependent, FormulaType formulaType) FormulaParseContext(SSheet sheet, String sheetName, Ref dependent) FormulaParseContext(SSheet sheet, String sheetName, Ref dependent, FormulaType formulaType) -
Uses of SSheet in io.keikai.range
Methods in io.keikai.range that return SSheetModifier and TypeMethodDescriptionSRange.cloneSheet(String name) Clone sheet as specified in this Range.SRange.cloneSheetFrom(String name, SSheet sheet) Clone from the specified source sheet to the owner book of this range.SRange.cloneSheetFrom(String name, SSheet sheet, boolean valueOnly) Clone from the specified source sheet to the owner book of this range.SRange.createSheet(String name) Create sheet of this book as specified in this Range.SRange.getSheet()Returns associateSSheetof this range.Methods in io.keikai.range with parameters of type SSheetModifier and TypeMethodDescriptionSRange.cloneSheetFrom(String name, SSheet sheet) Clone from the specified source sheet to the owner book of this range.SRange.cloneSheetFrom(String name, SSheet sheet, boolean valueOnly) Clone from the specified source sheet to the owner book of this range.Returns a list of the defined names belong toSSheetstatic SRangestatic SRangestatic SRangeReturns the associatedXRangeof the specifiedXNSheetand area.static SRangeSRanges.range(SSheet sheet, CellRegion region) static SRangestatic SRangeSRanges.rangeByName(SSheet sheet, String name) Returns the associatedSRangeof the specified name of a NamedRange (e.g. -
Uses of SSheet in io.keikai.range.impl
Fields in io.keikai.range.impl declared as SSheetMethods in io.keikai.range.impl that return SSheetModifier and TypeMethodDescriptionRangeImpl.cloneSheet(String name) RangeImpl.cloneSheetFrom(String name, SSheet sheet) RangeImpl.cloneSheetFrom(String name, SSheet sheet, boolean valueOnly) RangeImpl.createSheet(String name) AutoFilterUpdate.getSheet()InsertDeleteUpdate.getSheet()MergeUpdate.getSheet()RangeImpl.getSheet()Methods in io.keikai.range.impl with parameters of type SSheetModifier and TypeMethodDescriptionvoidModelUpdateCollector.addAutoFilterUpdate(SSheet sheet, STable table) voidModelUpdateCollector.addCellUpdate(SSheet sheet, int row, int column, int lastRow, int lastColumn, CellAttribute cellAttr) voidModelUpdateCollector.addInsertDeleteUpdate(SSheet sheet, boolean inserted, boolean isRow, int index, int lastIndex) voidModelUpdateCollector.addMergeChange(SSheet sheet, CellRegion original, CellRegion changeTo) RangeImpl.cloneSheetFrom(String name, SSheet sheet) RangeImpl.cloneSheetFrom(String name, SSheet sheet, boolean valueOnly) InsertDeleteHelper.collectContainedTables(SSheet sheet, int row1, int col1, int row2, int col2) static voidInsertDeleteHelper.deleteTablesByNames(SSheet sheet, Set<String> toDelete) static booleanDataRegionHelper.isOneCell(SSheet sheet, CellRegion rng) voidNotifyChangeHelper.notifyChartChange(SSheet sheet, String chartId) voidNotifyChangeHelper.notifyCustomEvent(String customEventName, SSheet sheet, Object data) voidNotifyChangeHelper.notifyDataValidationChange(SSheet sheet, String validationId) voidNotifyChangeHelper.notifyDisplayGridlines(SSheet sheet, boolean show) voidNotifyChangeHelper.notifyNameNameChange(SSheet sheet, SName name, String oldName) voidNotifyChangeHelper.notifyProtectSheet(SSheet sheet, boolean protect) voidNotifyChangeHelper.notifyReleaseSelectedCache(SSheet sheet) voidNotifyChangeHelper.notifySheetAutoFilterChange(SSheet sheet, STable table) voidNotifyChangeHelper.notifySheetChartAdd(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetChartDelete(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetChartUpdate(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetCreate(SSheet sheet) voidNotifyChangeHelper.notifySheetDelete(SBook book, SSheet deletedSheet, int deletedIndex) voidNotifyChangeHelper.notifySheetFreezeChange(SSheet sheet) voidNotifyChangeHelper.notifySheetGroupChange(SSheet sheet) voidNotifyChangeHelper.notifySheetNameChange(SSheet sheet, String oldName) voidNotifyChangeHelper.notifySheetPictureAdd(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetPictureDelete(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetPictureMove(SSheet sheet, String id) voidNotifyChangeHelper.notifySheetReorder(SSheet sheet, int oldIdx) voidNotifyChangeHelper.notifySheetSelect(SSheet sheet) voidNotifyChangeHelper.notifySheetVisibleChange(SSheet sheet) Constructors in io.keikai.range.impl with parameters of type SSheetModifierConstructorDescriptionAutoFilterUpdate(SSheet sheet, STable table) InsertDeleteUpdate(SSheet sheet, boolean inserted, boolean row, int index, int lastIndex) MergeUpdate(SSheet sheet, CellRegion origMerge, CellRegion merge) PasteRangeImpl(SSheet sheet, int tRow, int lCol, int bRow, int rCol, boolean wholeRow, boolean wholeColumn) RangeImpl(SSheet sheet, CellRegion region) -
Uses of SSheet in io.keikai.range.impl.autofill
Methods in io.keikai.range.impl.autofill with parameters of type SSheetModifier and TypeMethodDescriptionvoidAutoFillHelper.fill(SSheet sheet, CellRegion srcRegion, CellRegion dstRegion, SRange.FillType fillType) fill the sheet, from srcRef to dstRefvoidAutoFillHelper.fillDown(SSheet sheet, CellRegion srcRef, CellRegion dstRef, SRange.FillType fillType) voidAutoFillHelper.fillLeft(SSheet sheet, CellRegion srcRef, CellRegion dstRef, SRange.FillType fillType) voidAutoFillHelper.fillRight(SSheet sheet, CellRegion srcRef, CellRegion dstRef, SRange.FillType fillType) voidAutoFillHelper.fillUp(SSheet sheet, CellRegion srcRef, CellRegion dstRef, SRange.FillType fillType) -
Uses of SSheet in io.keikai.range.impl.imexp
Methods in io.keikai.range.impl.imexp that return SSheetModifier and TypeMethodDescriptionprotected SSheetAbstractExcelImporter.importSheet(org.apache.poi.ss.usermodel.Sheet poiSheet, int poiSheetIndex) Methods in io.keikai.range.impl.imexp with parameters of type SSheetModifier and TypeMethodDescriptionprotected voidExcelXlsxExporter.addPoiRule(SSheet sheet, org.openxmlformats.schemas.spreadsheetml.x2006.main.CTCfRule ctRule, SConditionalFormattingRule rule) voidAbstractExporter.export(SSheet sheet, OutputStream fos) protected abstract voidAbstractExcelExporter.exportAutoFilter(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportAutoFilter(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportAutoFilter(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) See Javadoc atAbstractExcelImporterimportAutoFilter().protected abstract voidAbstractExcelExporter.exportChart(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportChart(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportChart(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) reference DrawingManagerImpl.addChartX()protected abstract voidAbstractExcelExporter.exportColumnArray(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet, SColumnArray columnArr) protected voidExcelXlsExporter.exportColumnArray(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet, SColumnArray columnArr) protected voidExcelXlsxExporter.exportColumnArray(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet, SColumnArray columnArr) protected abstract voidAbstractExcelExporter.exportConditionalFormatting(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportConditionalFormatting(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportConditionalFormatting(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected abstract voidAbstractExcelExporter.exportExtLst(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportExtLst(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportExtLst(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidAbstractExcelExporter.exportMergedRegions(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected abstract voidAbstractExcelExporter.exportPassword(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportPassword(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) Export hashed password directly to poiSheet.protected voidExcelXlsxExporter.exportPassword(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) Export hashed password directly to poiSheet.protected abstract voidAbstractExcelExporter.exportPicture(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportPicture(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportPicture(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) Reference DrawingManagerImpl.addPicture()protected voidprotected voidAbstractExcelExporter.exportRowColumn(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportRowColumn(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidAbstractExcelExporter.exportSheet(SSheet sheet) protected abstract voidAbstractExcelExporter.exportSheetPr(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportSheetPr(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportSheetPr(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidAbstractExcelExporter.exportSheetProtection(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) POI SheetProtection.protected abstract intAbstractExcelExporter.exportTables(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet, int tbId) protected intExcelXlsExporter.exportTables(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet, int tbId) protected intExcelXlsxExporter.exportTables(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet0, int tbId) protected abstract voidAbstractExcelExporter.exportValidation(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsExporter.exportValidation(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsxExporter.exportValidation(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) According toSDataValidation.ValidationType, FORMULA means custom validation.protected voidAbstractExcelImporter.importAutoFilter(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) POI AutoFilter.getFilterColumn(i) sometimes returns null.protected SCellAbstractExcelImporter.importCell(org.apache.poi.ss.usermodel.Cell poiCell, int row, SSheet sheet) protected voidExcelXlsImporter.importChart(List<org.apache.poi.hssf.usermodel.HSSFChartShape> poiCharts, org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected abstract voidAbstractExcelImporter.importColumn(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) When a column is hidden with default width, we don't import the width for it's 0.protected voidExcelXlsImporter.importColumn(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) When a column is hidden with default width, we don't import the width for it's 0.protected abstract voidAbstractExcelImporter.importConditionalFormatting(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected voidExcelXlsImporter.importConditionalFormatting(SSheet sheet, org.apache.poi.ss.usermodel.Sheet poiSheet) protected abstract voidAbstractExcelImporter.importDrawings(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) Drawings includes charts and pictures.protected voidExcelXlsImporter.importDrawings(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) reference DrawingManagerImpl.initHSSFDrawings()protected voidAbstractExcelImporter.importMergedRegions(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected abstract voidAbstractExcelImporter.importPassword(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected voidExcelXlsImporter.importPassword(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected voidAbstractExcelImporter.importPicture(List<org.apache.poi.ss.usermodel.Picture> poiPictures, org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected SRowprotected voidAbstractExcelImporter.importSheetDefaultColumnWidth(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected abstract voidAbstractExcelImporter.importSheetProtection(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) POI SheetProtection.protected voidExcelXlsImporter.importSheetProtection(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected abstract voidAbstractExcelImporter.importTables(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) POI sheet tablesprotected voidExcelXlsImporter.importTables(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected abstract voidAbstractExcelImporter.importValidation(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected voidExcelXlsImporter.importValidation(org.apache.poi.ss.usermodel.Sheet poiSheet, SSheet sheet) protected org.apache.poi.ss.usermodel.ClientAnchorExcelXlsxExporter.toClientAnchor(ViewAnchor viewAnchor, SSheet sheet)