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

com.alachisoft.ncache.common.monitoring.MutableKeyValuePair Maven / Gradle / Ivy

package com.alachisoft.ncache.common.monitoring;

public class MutableKeyValuePair
{
    private TKey privateKey;
    public TKey getKey()
    {
        return privateKey;
    }
    public void setKey(TKey value)
    {
        privateKey = value;
    }
    private TValue privateValue;
    public TValue getValue()
    {
        return privateValue;
    }
    public void setValue(TValue value)
    {
        privateValue = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy