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

com.github.andyshaox.jdbc.ValueCovert Maven / Gradle / Ivy

package com.github.andyshaox.jdbc;

import java.sql.ResultSet;

/**
 * 
 * Title:
* Descript:
* Copyright: Copryright(c) Jul 22, 2016
* Encoding:UNIX UTF-8 * @author Andy.Shao * * @param out type */ public interface ValueCovert { boolean isProcess(Class packType); E pack(ResultSet resultSet , String filedName); E pack(ResultSet resultSet, int index); Object unPack(int index, E e); Object unPack(String filedName, E e); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy