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

datastructs.IRowBuilder Maven / Gradle / Ivy

The newest version!
package datastructs;

public interface IRowBuilder {

    /**
     * Create a row of type RowType
     */
    RowType create();

    /**
     * Create a row of type RowType
     */
    RowType create(int n);

    /**
     * Create a row of type RowType
     */
     RowType create(T... vals);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy