@Immutable public interface Anchor
  • Method Summary

    Modifier and Type
    Method
    Description
    int
     
    int
     
    int
     
    int
     
    static Anchor
    of(int fromCol, int fromColDx, int fromRow, int fromRowDy, int toCol, int toColDx, int toRow, int toRowDy)
     
    default boolean
    overlaps(Location location)
     
    static Anchor
    parse(String anchorString)
    Produce an anchor from a string as represented inside Excel's XML.
    int
     
    int
     
    int
     
    int
     
  • Method Details

    • fromCol

      int fromCol()
    • fromColDx

      int fromColDx()
    • fromRow

      int fromRow()
    • fromRowDy

      int fromRowDy()
    • toCol

      int toCol()
    • toColDx

      int toColDx()
    • toRow

      int toRow()
    • toRowDy

      int toRowDy()
    • of

      static Anchor of(int fromCol, int fromColDx, int fromRow, int fromRowDy, int toCol, int toColDx, int toRow, int toRowDy)
    • parse

      static Anchor parse(String anchorString)
      Produce an anchor from a string as represented inside Excel's XML. Anchor: 6, 10, 15, 7, 7, 4, 15, 21 = fromCol, fromColDx, fromRow, fromRowDy, toCol, toColDx, toRow, toRowDy
    • overlaps

      default boolean overlaps(Location location)