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

com.github.rrsunhome.excelsql.parser.support.ArrayRowResultSet 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/2  上午12:35
 */
public class ArrayRowResultSet extends BaseRowResultSet {

    private String[] values;

    public ArrayRowResultSet(int rowIndex, String[] values) {
        super(rowIndex);
        this.values = values;
    }

    @Override
    protected Object getObject(int cellIndex) {
        return values[cellIndex];
    }

    @Override
    public int getCellSize() {
        return values.length;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy