org.xblackcat.sjpu.storage.converter.VoidConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sjpu-dbah Show documentation
Show all versions of sjpu-dbah Show documentation
Service for generating DB access logic in simple way via interfaces and annotations
package org.xblackcat.sjpu.storage.converter;
import java.sql.ResultSet;
import java.sql.SQLException;
/**
* 21.02.13 11:05
*
* @author xBlackCat
*/
public class VoidConverter implements IToObjectConverter {
@Override
public Void convert(ResultSet rs) throws SQLException {
return null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy