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

Alachisoft.NCache.Common.DataStructures.KeyValuesContainer Maven / Gradle / Ivy

package Alachisoft.NCache.Common.DataStructures;

public class KeyValuesContainer {
    private String _key;
    //Hashtable containing attribute-value pair of current key
    private java.util.Hashtable _valuesHT;

    public KeyValuesContainer() {
        _valuesHT = new java.util.Hashtable();
    }

    public final String getKey() {
        return _key;
    }

    public final void setKey(String value) {
        _key = value;
    }

    public final java.util.Hashtable getValues() {
        return _valuesHT;
    }

    public final int getCount() {
        return _valuesHT.size();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy