All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.client.util.Converter Maven / Gradle / Ivy

There is a newer version: 3.21.0
Show newest version
/*
 * 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