001// Licensed under the MIT license. See LICENSE file in the project root for full license information.
002
003package de.bytefish.pgbulkinsert.pgsql.converter;
004
005import de.bytefish.pgbulkinsert.pgsql.utils.TimeStampUtils;
006
007import java.time.LocalDate;
008
009public class LocalDateConverter implements IValueConverter<LocalDate, Integer> {
010
011    @Override
012    public Integer convert(final LocalDate date) {
013        return TimeStampUtils.toPgDays(date);
014    }
015
016}