All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.mygreen.supercsv.builder.DefaultHeaderMapper Maven / Gradle / Ivy

Go to download

CSVのJavaライブラリであるSuperCSVに、アノテーション機能を追加したライブラリです。

There is a newer version: 2.3
Show newest version
package com.github.mygreen.supercsv.builder;


/**
 * カラムのラベル情報をヘッダーとする。
 *
 * @since 2.1
 * @author T.TSUCHIE
 *
 */
public class DefaultHeaderMapper implements HeaderMapper {

    @Override
    public String toMap(final ColumnMapping column, final Configuration config, final Class[] groups) {
        return column.getLabel();
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy