
water.util.Pair Maven / Gradle / Ivy
package water.util;
import java.util.AbstractMap.SimpleEntry;
/** Pair class with a clearer name than AbstractMap.SimpleEntry. */
public class Pair extends SimpleEntry {
public Pair(K key, V value) {
super(key, value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy