Class SheetRowColIndex

  • All Implemented Interfaces:
    java.io.Serializable

    public class SheetRowColIndex
    extends java.lang.Object
    implements java.io.Serializable
    Spreadsheet component model for storing a row/column index.
    Since:
    6.2
    Author:
    Mark Lassiter / Melloware
    See Also:
    Serialized Form
    • Constructor Summary

      Constructors 
      Constructor Description
      SheetRowColIndex​(java.lang.String rowKey, java.lang.Integer col)
      Constructs an instance of RowColIndex for the row and column specified.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean equals​(java.lang.Object o)  
      java.lang.Integer getColIndex()
      The colIndex value.
      java.lang.String getRowKey()
      The rowIndex value.
      int hashCode()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, finalize, getClass, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • SheetRowColIndex

        public SheetRowColIndex​(java.lang.String rowKey,
                                java.lang.Integer col)
        Constructs an instance of RowColIndex for the row and column specified.
        Parameters:
        rowKey - the row represented by this index
        col - the column represented by this index
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object o)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object
      • getRowKey

        public java.lang.String getRowKey()
        The rowIndex value.
        Returns:
        the rowIndex
      • getColIndex

        public java.lang.Integer getColIndex()
        The colIndex value.
        Returns:
        the colIndex