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 005public interface IValueConverter<TSource, TTarget> { 006 007 TTarget convert(TSource source); 008 009}