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

org.whitesource.utils.Pair Maven / Gradle / Ivy

package org.whitesource.utils;

public class Pair{

    /* --- Private members --- */
    private final X key;
    private final Y value;

    /* --- Constructor --- */
    public Pair(X key, Y value) {
        this.key = key;
        this.value = value;
    }

    /* --- Getters --- */
    public X getKey() {
        return key;
    }
    public Y getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy