com.github.rrsunhome.excelsql.parser.support.BaseRowResultSet Maven / Gradle / Ivy
package com.github.rrsunhome.excelsql.parser.support;
/**
* @author : wangqijia
* create at: 2021/11/4 上午10:50
*/
public abstract class BaseRowResultSet {
private int rowIndex;
public BaseRowResultSet(int rowIndex) {
this.rowIndex = rowIndex;
}
public String getString(int cellIndex) {
return getObject(cellIndex).toString();
}
protected abstract Object getObject(int cellIndex);
public abstract int getCellSize();
public int getRowIndex() {
return rowIndex;
}
}