Package io.keikai.model.impl
Class AbstractTableAdv
- java.lang.Object
-
- io.keikai.model.impl.AbstractTableAdv
-
- All Implemented Interfaces:
STable
,Serializable
,Table
- Direct Known Subclasses:
TableImpl
public abstract class AbstractTableAdv extends Object implements STable, Serializable
- Since:
- 3.8.0
- Author:
- henri
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.poi.ss.usermodel.Table
isStructuredReference
-
-
Constructor Summary
Constructors Constructor Description AbstractTableAdv()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract void
deleteCols(int col1, int col2)
abstract void
deleteRows(int row1, int row2)
abstract SCellStyle
getCellStyle(int row, int col)
abstract void
insertCols(int col1, int col2, boolean insertLeft)
abstract void
insertRows(int row1, int row2)
abstract void
refreshFilter()
abstract void
refreshStyle()
abstract boolean
shiftCols(int offset)
abstract boolean
shiftRows(int offset)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.keikai.model.STable
addColumn, createAutoFilter, deleteAutoFilter, enableAutoFilter, getAllRegion, getAutoFilter, getBook, getColumnAt, getColumns, getColumnsRegion, getDataRegion, getDisplayName, getHeaderRowCount, getHeadersRegion, getItemRegion, getName, getTableStyleInfo, getThisRowRegion, getTotalsRegion, getTotalsRowCount, setDisplayName, setHeaderRowCount, setName, setTotalsRowCount
-
Methods inherited from interface org.apache.poi.ss.usermodel.Table
contains, contains, findColumnIndex, getEndColIndex, getEndRowIndex, getSheetName, getStartColIndex, getStartRowIndex, getStyle, getStyleName, isHasTotalsRow
-
-
-
-
Method Detail
-
getCellStyle
public abstract SCellStyle getCellStyle(int row, int col)
-
deleteRows
public abstract void deleteRows(int row1, int row2)
-
deleteCols
public abstract void deleteCols(int col1, int col2)
-
shiftCols
public abstract boolean shiftCols(int offset)
-
shiftRows
public abstract boolean shiftRows(int offset)
-
insertRows
public abstract void insertRows(int row1, int row2)
-
insertCols
public abstract void insertCols(int col1, int col2, boolean insertLeft)
-
refreshFilter
public abstract void refreshFilter()
-
refreshStyle
public abstract void refreshStyle()
-
-