org.simpleflatmapper.jdbc.property.time.ZoneOffsetProperty Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sfm-jdbc Show documentation
Show all versions of sfm-jdbc Show documentation
Java library to map flat record - ResultSet, csv - to java object with minimum configuration and low footprint.
package org.simpleflatmapper.jdbc.property.time;
import org.simpleflatmapper.util.Supplier;
import java.time.ZoneOffset;
public class ZoneOffsetProperty implements Supplier {
private final ZoneOffset offset;
public ZoneOffsetProperty(ZoneOffset offset) {
this.offset = offset;
}
@Override
public ZoneOffset get() {
return offset;
}
}