封装一行数据
package day1;
import java.util.ArrayList;
import java.util.List;
/**
* 封装一行数据
*/
public class RowData {
private String rowkey;
private List<CellData> cellDatas = new ArrayList<>();
public RowData() {
}
public RowData(String rowkey) {
this.rowkey = rowkey;
}
public String getRowkey() {
return rowkey;
}
public void setRowkey(String rowkey) {
this.rowkey = rowkey;
}
public void addCellData(CellData cellData){
cellDatas.add(cellData);
}
public List<CellData> getCellDatas() {
return cellDatas;
}
public void setCellDatas(List<CellData> cellDatas) {
this.cellDatas = cellDatas;
}
}