CsvFile |
CsvFile.clone() |
Creates a clone of the current instance of the object, allowing "save points" between filter/exclude operations,
or multiple filter/exclude paths for a single file.
|
CsvFile |
CsvFile.exclude(String excludeBy) |
Reduces the rows to those not matching a specific value in the first column.
|
CsvFile |
CsvFile.exclude(String column,
String excludeBy) |
Reduces the rows to those not matching a specific value in a given column.
|
CsvFile |
CsvFile.filter(String filterBy) |
Reduces the rows to those matching a specific value in the first column.
|
CsvFile |
CsvFile.filter(String column,
String filterBy) |
Reduces the rows to those matching a specific value in a given column.
|
static CsvFile |
CsvLoader.load(String fileName) |
Loads the CSV file from resources and imports CSV content.
|
static CsvFile |
CsvLoader.load(String fileName,
boolean preserveSpaces) |
Loads the CSV file from resources and imports CSV content.
|
CsvFile |
CsvFile.setCurrentRow(int row) |
Changes focus to a specific row.
|
CsvFile |
CsvFile.setNextRow() |
Updates focus to the next row beneath the current row.
|
CsvFile |
CsvFile.setPreviousRow() |
Updates focus to the previous row above the current row.
|