Class CellReference


  • public final class CellReference
    extends CellReference
    Deprecated.
    POI 4.0.0-SNAPSHOT. Use CellReference instead. Actually the replacement CellReference was added earlier, but the deprecation notice was added only in 4.0.0-SNAPSHOT.
    Common conversion functions between Excel style A1, C27 style cell references, and POI usermodel style row=0, column=0 style references.
    • Constructor Detail

      • CellReference

        public CellReference​(java.lang.String cellRef)
        Deprecated.
        Create an cell ref from a string representation. Sheet names containing special characters should be delimited and escaped as per normal syntax rules for formulas.
      • CellReference

        public CellReference​(int pRow,
                             int pCol)
        Deprecated.
      • CellReference

        public CellReference​(int pRow,
                             int pCol,
                             boolean pAbsRow,
                             boolean pAbsCol)
        Deprecated.
      • CellReference

        public CellReference​(java.lang.String pSheetName,
                             int pRow,
                             int pCol,
                             boolean pAbsRow,
                             boolean pAbsCol)
        Deprecated.