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

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

There is a newer version: 2.1.2
Show newest version
package com.github.rrsunhome.excelsql.parser.support;

import java.util.Map;

/**
 * @author : wangqijia
 * create at:  2021/11/2  上午12:35
 */
public class MapRowResultSet extends BaseRowResultSet {

    private Map rowResult;

    public MapRowResultSet(int rowIndex, Map rowResult) {
        super(rowIndex);
        this.rowResult = rowResult;
    }

    @Override
    protected Object getObject(int cellIndex) {
        return rowResult.get(cellIndex);
    }

    @Override
    public int getCellSize() {
        return rowResult.size();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy