Uses of Class
org.apache.poi.ss.usermodel.CellCopyPolicy
-
Packages that use CellCopyPolicy Package Description org.apache.poi.hssf.usermodel The usermodel package maps HSSF low level structures to familiar workbook/sheet modelorg.apache.poi.ss.usermodel org.apache.poi.ss.util -
-
Uses of CellCopyPolicy in org.apache.poi.hssf.usermodel
Methods in org.apache.poi.hssf.usermodel with parameters of type CellCopyPolicy Modifier and Type Method Description voidHSSFRow. copyRowFrom(Row srcRow, CellCopyPolicy policy)Copy the cells from srcRow to this row If this row is not a blank row, this will merge the two rows, overwriting the cells in this row with the cells in srcRow If srcRow is null, overwrite cells in destination row with blank values, styles, etc per cell copy policy srcRow may be from a different sheet in the same workbookvoidHSSFRow. copyRowFrom(Row srcRow, CellCopyPolicy policy, CellCopyContext context)Copy the cells from srcRow to this row. -
Uses of CellCopyPolicy in org.apache.poi.ss.usermodel
Methods in org.apache.poi.ss.usermodel that return CellCopyPolicy Modifier and Type Method Description CellCopyPolicyCellCopyPolicy.Builder. build()Constructors in org.apache.poi.ss.usermodel with parameters of type CellCopyPolicy Constructor Description CellCopyPolicy(CellCopyPolicy other)Copy constructor -
Uses of CellCopyPolicy in org.apache.poi.ss.util
Methods in org.apache.poi.ss.util with parameters of type CellCopyPolicy Modifier and Type Method Description static voidCellUtil. copyCell(Cell srcCell, Cell destCell, CellCopyPolicy policy, CellCopyContext context)Copy cell value, formula and style, from srcCell per cell copy policy If srcCell is null, clears the cell value and cell style per cell copy policy.
-