org.sql2o.converters.ConverterBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anima Show documentation
Show all versions of anima Show documentation
Operate the database like a stream
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