FreedomNetworkSuite/Patchwork/src/main/java/me/totalfreedom/utils/Pair.java

23 lines
319 B
Java

package me.totalfreedom.utils;
public class Pair<K, V>
{
private final K key;
private final V value;
public Pair(K key, V value) {
this.key = key;
this.value = value;
}
public K getKey()
{
return key;
}
public V getValue()
{
return value;
}
}