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

com.dream.flex.def.DeleteTableDef Maven / Gradle / Ivy

The newest version!
package com.dream.flex.def;

public interface DeleteTableDef extends DeleteDef {

    default T delete(TableDef tableDef) {
        statement().setTable(tableDef.getStatement().getColumn());
        return (T) creatorFactory().newDeleteWhereDef(statement());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy