Class CsvFile.Line

java.lang.Object
net.sf.jailer.util.CsvFile.Line
Enclosing class:
CsvFile

public static class CsvFile.Line extends Object
A line in a CSV-file.
Author:
Ralf Wisser
  • Field Details

    • location

      public final String location
      Describes the position of the line in a file.
    • cells

      public final List<String> cells
      The cells.
    • length

      public int length
      Length of the line.
  • Constructor Details

    • Line

      public Line(String location, List<String> cells)
      Constructor.
      Parameters:
      location - describes the position of the line in a file
      cells - the cells
  • Method Details