001// Licensed under the MIT license. See LICENSE file in the project root for full license information. 002 003package de.bytefish.pgbulkinsert.function; 004 005@FunctionalInterface 006public interface ToBooleanFunction<T> { 007 008 /** 009 * Applies this function to the given argument. 010 * 011 * @param value the function argument 012 * @return the function result 013 */ 014 boolean applyAsBoolean(T value); 015}