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

org.jruby.ir.operands.KeyValuePair Maven / Gradle / Ivy

There is a newer version: 9.4.9.0
Show newest version
package org.jruby.ir.operands;

public class KeyValuePair {
    final private Operand key;
    final private Operand value;

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

    public Operand getKey() {
        return key;
    }

    public Operand getValue() {
        return value;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy