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

com.github.marchenkoprojects.prettyjdbc.Unwrapable Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy