001// Licensed under the MIT license. See LICENSE file in the project root for full license information. 002 003package de.bytefish.pgbulkinsert.pgsql.handlers; 004 005import de.bytefish.pgbulkinsert.pgsql.constants.DataType; 006 007public interface IValueHandlerProvider { 008 009 <TTargetType> IValueHandler<TTargetType> resolve(DataType targetType); 010 011}