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

com.yahacode.hiddenblade.app.doc.excel.ReservedResult Maven / Gradle / Ivy

The newest version!
package com.yahacode.hiddenblade.app.doc.excel;

import com.yahacode.hiddenblade.app.doc.excel.exception.ExceptionRow;

import java.util.List;

/**
 * Result for reserved reading
 *
 * @param  data type
 * @author zengyongli
 * @since 0.3.0
 */
public class ReservedResult {

    /**
     * result list, contain NULL
     */
    private List list;

    /**
     * row exceptions
     */
    private List exceptionList;

    public List getList() {
        return list;
    }

    public List getExceptionList() {
        return exceptionList;
    }

    public ReservedResult(List list, List exceptionList) {
        this.list = list;
        this.exceptionList = exceptionList;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy