com.github.marchenkoprojects.prettyjdbc.Unwrapable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prettyjdbc Show documentation
Show all versions of prettyjdbc Show documentation
PrettyJDBC is a library that provides a simple and transparent way to work with a relational database.
The library is a lightweight wrapper over JDBC technology.
The newest version!
package com.github.marchenkoprojects.prettyjdbc;
/**
* Represents a data type wrapper for unwrapping the original object.
*
* @param type of original object
*
* @author Oleg Marchenko
*/
public interface Unwrapable {
/**
* Unwrapping the original object for further use.
*
* @return the original object
*/
T unwrap();
}