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

org.sql2o.converters.Converter Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package org.sql2o.converters;

/**
 * Represents a converter.
 */
public interface Converter {

    /**
     * Conversion from SQL to Java.
     */
    T convert(Object val) throws ConverterException;

    /**
     * Conversion from Java to SQL.
     */
    Object toDatabaseParam(T val);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy