![JAR search and dependency download from the Maven repository](/logo.png)
org.sfm.map.column.time.JavaZoneIdProperty 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.ZoneId;
public class JavaZoneIdProperty implements ColumnProperty {
private final ZoneId zoneId;
public JavaZoneIdProperty(ZoneId zoneId) {
this.zoneId = zoneId;
}
public ZoneId getZoneId() {
return zoneId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy