All Downloads are FREE. Search and download functionalities are using the official Maven repository.

zhibi.fast.poi.excel.export.style.cell.AbstractCellStyle Maven / Gradle / Ivy

There is a newer version: 2.6.2
Show newest version
package zhibi.fast.poi.excel.export.style.cell;

import lombok.Getter;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Workbook;

/**
 * @author 执笔
 * @date 2018/11/25 12:13
 */
public abstract class AbstractCellStyle implements ExcelCellStyle {

    @Getter
    private CellStyle cellStyle;

    public AbstractCellStyle(Workbook workbook) {
        this.cellStyle = workbook.getCellStyleAt(0);
        if (null == this.cellStyle) {
            this.cellStyle = workbook.createCellStyle();
        }
        config(this.cellStyle);
    }


    @Override
    public void config(CellStyle cellStyle) {

    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy