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

com.github.ltsopensource.kv.data.DataEntry Maven / Gradle / Ivy

package com.github.ltsopensource.kv.data;

import java.io.Serializable;

/**
 * @author Robert HG ([email protected]) on 12/15/15.
 */
public class DataEntry implements Serializable {

    private K key;

    private V value;

    public DataEntry() {
    }

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

    public K getKey() {
        return key;
    }

    public void setKey(K key) {
        this.key = key;
    }

    public V getValue() {
        return value;
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy