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

com.swak.excel.metadata.BaseRow Maven / Gradle / Ivy

The newest version!
package com.swak.excel.metadata;

import com.alibaba.excel.annotation.ExcelIgnore;

import java.util.List;
import java.util.Map;

public abstract class BaseRow implements ExcelRow {

	@ExcelIgnore
	private Integer rowIndex;

	@ExcelIgnore
	private Map> rowHead;

	@ExcelIgnore
	private String sheetName;

	@Override
	public Integer getRowIndex() {
		return rowIndex;
	}

	@Override
	public String getSheetName() {
		return sheetName;
	}
	@Override
	public void setSheetName(String sheetName) {
		this.sheetName = sheetName;
	}
	@Override
	public void setRowIndex(Integer rowIndex) {
		this.rowIndex = rowIndex;
	}

	@Override
	public Map> getRowHead() {
		return this.rowHead;
	}

	@Override
	public void setRowHead(Map> rowHead) {
		this.rowHead = rowHead;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy