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

io.virtdata.api.Binder Maven / Gradle / Ivy

There is a newer version: 2.12.15
Show newest version
package io.virtdata.api;

/***
 * A Binder is a type that knows how to return a result object given a long value
 * to bind mapped values with.
 * @param  The resulting object type
 */
public interface Binder {
    /**
     * Bind values derived from a long to some object, returning an object type R
     * @param value a long input value
     * @return an R
     */
    R bind(long value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy