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

com.github.rrsunhome.excelsql.parser.support.BaseRowResultSet Maven / Gradle / Ivy

There is a newer version: 2.1.2
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy