Uses of Interface
liquibase.util.csv.opencsv.bean.MappingStrategy

Packages that use MappingStrategy
liquibase.util.csv.opencsv.bean   
 

Uses of MappingStrategy in liquibase.util.csv.opencsv.bean
 

Classes in liquibase.util.csv.opencsv.bean that implement MappingStrategy
 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.
 

Methods in liquibase.util.csv.opencsv.bean with parameters of type MappingStrategy
 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 © 2016 Liquibase.org. All rights reserved.