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

de.chojo.sadu.mapper.rowmapper.PartialRowMapper Maven / Gradle / Ivy

Go to download

SADU module to map values received from a database to java objects using the queries module.

The newest version!
/*
 *     SPDX-License-Identifier: LGPL-3.0-or-later
 *
 *     Copyright (C) RainbowDashLabs and Contributor
 */

package de.chojo.sadu.mapper.rowmapper;

/**
 * Represents a partially configured {@link RowMapper}
 *
 * @param  type of the mapper result.
 */
public interface PartialRowMapper {
    /**
     * Adds a mapper to map a row to the required object.
     *
     * @param mapper mapper
     * @return builder instance
     */
    RowMapperBuilder mapper(RowMapping mapper);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy