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

cat.nyaa.nyaacore.orm.backends.ITable Maven / Gradle / Ivy

There is a newer version: 3.12.2
Show newest version
package cat.nyaa.nyaacore.orm.backends;

import cat.nyaa.nyaacore.orm.DataTypeMapping;

/**
 * Some low-level APIs to interact with data tables.
 */
public interface ITable {
    default  T selectSingleton(String query, DataTypeMapping.IDataTypeConverter resultTypeConverter) {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy