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

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

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

/**
 * @author [email protected]
 * @since 4/6/14
 */
abstract class ConverterBase implements Converter {

    public Object toDatabaseParam(T val) {
        return val;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy