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

water.util.Pair Maven / Gradle / Ivy

There is a newer version: 3.8.2.9
Show newest version
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