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

com.indeed.mph.EqualKeyValidator Maven / Gradle / Ivy

There is a newer version: 1.0.5
Show newest version
package com.indeed.mph;

/**
 * @author alexs
 */
public class EqualKeyValidator implements KeyValidator {
    private static final long serialVersionUID = 770186872;

    public V validate(final K inputKey, final K extractedKey, final V extractedValue) {
        // allow null for implicit keys
        return extractedKey == null || inputKey.equals(extractedKey) ? extractedValue : null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy