ReadRowHolder.java
2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
package com.taover.easyexcel.read.metadata.holder;
import java.util.Map;
import com.taover.easyexcel.enums.HolderEnum;
import com.taover.easyexcel.enums.RowTypeEnum;
import com.taover.easyexcel.metadata.Cell;
import com.taover.easyexcel.metadata.GlobalConfiguration;
import com.taover.easyexcel.metadata.Holder;
/**
 * sheet holder
 *
 * @author Jiaju Zhuang
 */
public class ReadRowHolder implements Holder {
    /**
     * Returns row index of a row in the sheet that contains this cell.Start form 0.
     */
    private Integer rowIndex;
    /**
     * Row type
     */
    private RowTypeEnum rowType;
    /**
     * Cell map
     */
    private Map<Integer, Cell> cellMap;
    /**
     * The result of the previous listener
     */
    private Object currentRowAnalysisResult;
    /**
     * Some global variables
     */
    private GlobalConfiguration globalConfiguration;
    public ReadRowHolder(Integer rowIndex, RowTypeEnum rowType, GlobalConfiguration globalConfiguration,
        Map<Integer, Cell> cellMap) {
        this.rowIndex = rowIndex;
        this.rowType = rowType;
        this.globalConfiguration = globalConfiguration;
        this.cellMap = cellMap;
    }
    public GlobalConfiguration getGlobalConfiguration() {
        return globalConfiguration;
    }
    public void setGlobalConfiguration(GlobalConfiguration globalConfiguration) {
        this.globalConfiguration = globalConfiguration;
    }
    public Object getCurrentRowAnalysisResult() {
        return currentRowAnalysisResult;
    }
    public void setCurrentRowAnalysisResult(Object currentRowAnalysisResult) {
        this.currentRowAnalysisResult = currentRowAnalysisResult;
    }
    public Integer getRowIndex() {
        return rowIndex;
    }
    public void setRowIndex(Integer rowIndex) {
        this.rowIndex = rowIndex;
    }
    public RowTypeEnum getRowType() {
        return rowType;
    }
    public void setRowType(RowTypeEnum rowType) {
        this.rowType = rowType;
    }
    public Map<Integer, Cell> getCellMap() {
        return cellMap;
    }
    public void setCellMap(Map<Integer, Cell> cellMap) {
        this.cellMap = cellMap;
    }
    @Override
    public HolderEnum holderType() {
        return HolderEnum.ROW;
    }
}