net.snowflake.client.util.Converter Maven / Gradle / Ivy
/*
* Copyright (c) 2012-2024 Snowflake Computing Inc. All right reserved.
*/
package net.snowflake.client.util;
import net.snowflake.client.core.SFException;
import net.snowflake.client.core.SnowflakeJdbcInternalApi;
/** Functional interface used to convert data to expected type */
@SnowflakeJdbcInternalApi
@FunctionalInterface
public interface Converter {
T convert(Object object) throws SFException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy