com.github.andyshaox.jdbc.ValueCovert Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of GearEE Show documentation
Show all versions of GearEE Show documentation
Enhance and formating the coding of JDK
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);
}