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

cn.ocoop.framework.common.excel.RowData Maven / Gradle / Ivy

The newest version!
package cn.ocoop.framework.common.excel;

import com.google.common.collect.Lists;
import lombok.Data;

import java.util.List;

@Data
public class RowData {
    private Integer index;
    private List cellData = Lists.newArrayList();

    public RowData() {
    }

    public RowData(List cellData) {
        this.cellData = cellData;
    }

    public void addCell(CellData cell) {
        cellData.add(cell);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy