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

io.nosqlbench.virtdata.core.bindings.Binder Maven / Gradle / Ivy

There is a newer version: 4.15.102
Show newest version
package io.nosqlbench.virtdata.core.bindings;

/***
 * 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 - 2025 Weber Informatics LLC | Privacy Policy