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

org.optaplanner.examples.common.util.Pair Maven / Gradle / Ivy

package org.optaplanner.examples.common.util;

public interface Pair {

    static  Pair of(A key, B value) {
        return new PairImpl<>(key, value);
    }

    A getKey();

    B getValue();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy