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

com.jd.blockchain.utils.DataEntry Maven / Gradle / Ivy

The newest version!
package com.jd.blockchain.utils;

/**
 * Versioning Key-Value data entry;
 * 
 * @author huanghaiquan
 *
 */
public interface DataEntry {

	public K getKey();

	public long getVersion();

	public V getValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy