- java.lang.Object
-
- org.dhatim.fastexcel.reader.CellRangeAddress
-
public final class CellRangeAddress extends Object
-
-
Constructor Summary
Constructors Constructor Description CellRangeAddress(int firstRow, int lastRow, int firstCol, int lastCol)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsColumn(int column)booleancontainsRow(int row)booleanequals(Object obj)intgetFirstColumn()intgetFirstRow()intgetLastColumn()intgetLastRow()inthashCode()booleanisInRange(int row, int column)booleanisInRange(CellAddress cell)StringtoString()static CellRangeAddressvalueOf(String ref)
-
-
-
Method Detail
-
getFirstColumn
public int getFirstColumn()
-
getFirstRow
public int getFirstRow()
-
getLastColumn
public int getLastColumn()
-
getLastRow
public int getLastRow()
-
isInRange
public boolean isInRange(int row, int column)
-
isInRange
public boolean isInRange(CellAddress cell)
-
containsRow
public boolean containsRow(int row)
-
containsColumn
public boolean containsColumn(int column)
-
valueOf
public static CellRangeAddress valueOf(String ref)
-
-