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

org.intermine.sql.writebatch.Table Maven / Gradle / Ivy

package org.intermine.sql.writebatch;

/*
 * Copyright (C) 2002-2022 FlyMine
 *
 * This code may be freely distributed and modified under the
 * terms of the GNU Lesser General Public Licence.  This should
 * be distributed with the code.  See the LICENSE file for more
 * information or http://www.gnu.org/copyleft/lesser.html.
 *
 */

/**
 * An interface representing all changes to be made to an SQL table of some sort.
 *
 * @author Matthew Wakeling
 */
public interface Table
{
    /**
     * Clears the batch.
     */
    void clear();

    /**
     * Returns the current amount of data, in bytes, held in this object.
     *
     * @return an int
     */
    int getSize();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy