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

org.jruby.util.KeyValuePair Maven / Gradle / Ivy

package org.jruby.util;

/**
 * Simple key-value pair object.
 */
public class KeyValuePair {
    private K key;
    private V value;

    public KeyValuePair(K key, V value) {
        this.key = key;
        this.value = value;
    }

    public K getKey() {
        return key;
    }

    public V getValue() {
        return value;
    }

    @Override
    public String toString() {
        return key + "=>" + value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy