io.github.ozzyozbourne.MapperCsvSingleton Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdwr Show documentation
Show all versions of rdwr Show documentation
Toml, Yaml, CSV, Json, Xml and Property format readers and writers
package io.github.ozzyozbourne;
import com.fasterxml.jackson.dataformat.csv.CsvMapper;
public enum MapperCsvSingleton {
INSTANCE(config());
final CsvMapper csvMapper;
MapperCsvSingleton(final CsvMapper csvMapper) {
this.csvMapper = csvMapper;
}
private static CsvMapper config(){
return new CsvMapper();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy