Class SheetRowColIndex
- java.lang.Object
-
- org.primefaces.extensions.model.sheet.SheetRowColIndex
-
- All Implemented Interfaces:
java.io.Serializable
public class SheetRowColIndex extends java.lang.Object implements java.io.SerializableSpreadsheet 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 booleanequals(java.lang.Object o)java.lang.IntegergetColIndex()The colIndex value.java.lang.StringgetRowKey()The rowIndex value.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.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
-
-