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

com.samskivert.depot.util.Builder2 Maven / Gradle / Ivy

//
// Depot library - a Java relational persistence library
// https://github.com/threerings/depot/blob/master/LICENSE

package com.samskivert.depot.util;

/**
 * A type-safe builder used to construct objects from the columns selected from Depot queries.
 */
public interface Builder2
{
    /**
     * Builds an instance, using the supplied data.
     */
    public T build (A a, B b);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy