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

com.alachisoft.ncache.client.internal.util.DictionaryEntry Maven / Gradle / Ivy

There is a newer version: 5.3.0
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package com.alachisoft.ncache.client.internal.util;

import java.util.Map.Entry;

/**
 * @author asad
 */
public class DictionaryEntry implements Entry {

    K key;
    V value;

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

    public K getKey() {
        return key;
    }

    public V getValue() {
        return value;
    }

    public V setValue(V value) {
        this.value = value;
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy