Class RowData.CellData

java.lang.Object
com.inet.excel.parser.RowData.CellData
Enclosing class:
RowData

public static class RowData.CellData extends Object
Container for data of single cell.
  • Constructor Details

    • CellData

      public CellData()
  • Method Details

    • getR

      public String getR()
      Returns reference to the location of this cell. For example "A1".
      Returns:
      reference to the location of this cell.
    • setR

      public void setR(String r)
      Sets reference to the location of this cell.
      Parameters:
      r - reference to the location of this cell. For example "A1".
    • getS

      public String getS()
      Returns index of this cell's style. For example "1".
      Returns:
      index of this cell's style.
    • setS

      public void setS(String s)
      Sets index of this cell's style.
      Parameters:
      s - index of this cell's style. For example "1".
    • getT

      public String getT()
      Returns enumeration representing this cell's data type. For example "s" for shared string.
      Returns:
      enumeration representing this cell's data type.
    • setT

      public void setT(String t)
      Sets enumeration representing this cell's data type.
      Parameters:
      t - enumeration representing this cell's data type. For example "s" for shared string.
    • getV

      public String getV()
      Returns this cell's value.
      Returns:
      this cell's value.
    • setV

      public void setV(String v)
      Sets this cell's value.
      Parameters:
      v - this cell's value.