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

com.jparams.store.KeyProvider Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.jparams.store;

/**
 * Transform a given value into a key
 *
 * @param  key type
 * @param  value type
 */
@FunctionalInterface
public interface KeyProvider
{
    /**
     * Index value to key or return null
     *
     * @param value value to transform into a key
     * @return key
     */
    K provide(V value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy