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;
}
}