Package | Description |
---|---|
liquibase.util.csv.opencsv.bean |
Modifier and Type | Class and Description |
---|---|
class |
ColumnPositionMappingStrategy<T>
Allows for the mapping of columns with their positions.
|
class |
HeaderColumnNameMappingStrategy<T>
Maps data to objects using the column names in the first row of the csv
file as reference.
|
class |
HeaderColumnNameTranslateMappingStrategy<T>
Expands on HeaderColumnNameMappingStrategy by allowing the user to pass in a map of column names to
bean names.
|
Modifier and Type | Method and Description |
---|---|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
CSVReader csv)
parse the values from the csvReader.
|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
CSVReader csv,
CsvToBeanFilter filter)
parse the values from the csvReader.
|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
Reader reader)
parse the values from a csvReader constructed from the passed in Reader.
|
List<T> |
CsvToBean.parse(MappingStrategy<T> mapper,
Reader reader,
CsvToBeanFilter filter)
parse the values from a csvReader constructed from the passed in Reader.
|
protected T |
CsvToBean.processLine(MappingStrategy<T> mapper,
String[] line)
Creates a single object from a line from the csv file.
|
Copyright © 2017 Liquibase.org. All rights reserved.