Class RVExcelRange

java.lang.Object
io.revealbi.core.data.RVExcelRange

public class RVExcelRange extends Object
Class defining the range that should be used when loading data from an Excel sheet.
  • Constructor Summary

    Constructors
    Constructor
    Description
    RVExcelRange(int locX, int locY, int lenX, int lenY)
    Creates an Excel range with the given starting position and dimensions.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Returns the number of columns in the range.
    int
    Returns the number of rows in the range.
    int
    Returns the zero-based column index of the top-left cell of the range.
    int
    Returns the zero-based row index of the top-left cell of the range.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • RVExcelRange

      public RVExcelRange(int locX, int locY, int lenX, int lenY)
      Creates an Excel range with the given starting position and dimensions.
      Parameters:
      locX - The zero-based column index of the top-left cell.
      locY - The zero-based row index of the top-left cell.
      lenX - The number of columns in the range.
      lenY - The number of rows in the range.
  • Method Details

    • getLocationX

      public int getLocationX()
      Returns the zero-based column index of the top-left cell of the range.
      Returns:
      The column index.
    • getLocationY

      public int getLocationY()
      Returns the zero-based row index of the top-left cell of the range.
      Returns:
      The row index.
    • getLengthX

      public int getLengthX()
      Returns the number of columns in the range.
      Returns:
      The column count.
    • getLengthY

      public int getLengthY()
      Returns the number of rows in the range.
      Returns:
      The row count.