org.sfm.map.column.time.JavaDateTimeFormatterProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simpleFlatMapper Show documentation
Show all versions of simpleFlatMapper Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.sfm.map.column.time;
import org.sfm.map.column.ColumnProperty;
import java.time.format.DateTimeFormatter;
public class JavaDateTimeFormatterProperty implements ColumnProperty {
private final DateTimeFormatter formatter;
public JavaDateTimeFormatterProperty(DateTimeFormatter formatter) {
this.formatter = formatter;
}
public DateTimeFormatter getFormatter() {
return formatter;
}
}