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

src.org.neodatis.btree.IKeyAndValue Maven / Gradle / Ivy

There is a newer version: 1.9.30.689
Show newest version
/**
 * 
 */
package org.neodatis.btree;

/**
 * @author olivier
 * 
 */
public interface IKeyAndValue {

	String toString();

	Comparable getKey();

	void setKey(Comparable key);

	Object getValue();

	void setValue(Object value);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy