- 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 boolean
containsColumn(int column)
boolean
containsRow(int row)
boolean
equals(Object obj)
int
getFirstColumn()
int
getFirstRow()
int
getLastColumn()
int
getLastRow()
int
hashCode()
boolean
isInRange(int row, int column)
boolean
isInRange(CellAddress cell)
String
toString()
static CellRangeAddress
valueOf(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)
-
-