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

acolyte.Result Maven / Gradle / Ivy

There is a newer version: 1.2.9
Show newest version
package acolyte;

import java.sql.SQLWarning;

/**
 * Row list result.
 *
 * @author Cedric Chantepie
 */
public interface Result {
    
    /**
     * Returns result with given |warning|.
     */
    public SELF withWarning(SQLWarning warning);

    /**
     * Returns result with warning for given |reason|.
     */
    public SELF withWarning(String reason);

    /**
     * Returns associated warning.
     */
    public SQLWarning getWarning();

} // end class Result




© 2015 - 2024 Weber Informatics LLC | Privacy Policy