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

io.github.wycst.wast.common.beans.KeyValuePair Maven / Gradle / Ivy

package io.github.wycst.wast.common.beans;

/**
 * @Author: wangy
 * @Date: 2022/11/13 10:23
 * @Description:
 */
public class KeyValuePair {

    final K key;
    final V value;

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

    public K getKey() {
        return key;
    }

    public V getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy