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

com.github.ltsopensource.kv.Entry Maven / Gradle / Ivy

package com.github.ltsopensource.kv;

import java.io.Serializable;

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

    private K key;
    private V value;

    public Entry() {
    }

    public Entry(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