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

org.dhatim.fastexcel.reader.BaseFormulaCell Maven / Gradle / Ivy

There is a newer version: 0.18.4
Show newest version
package org.dhatim.fastexcel.reader;

public class BaseFormulaCell {
    private final CellAddress baseCelAddr;

    private final String formula;
    private final CellRangeAddress ref;


    public BaseFormulaCell(CellAddress baseCelAddr, String formula, CellRangeAddress ref) {
        this.baseCelAddr = baseCelAddr;
        this.formula = formula;
        this.ref = ref;
    }

    public CellAddress getBaseCelAddr() {
        return baseCelAddr;
    }

    public String getFormula() {
        return formula;
    }

    public CellRangeAddress getRef() {
        return ref;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy