/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

package adaptablepriorityqueue;

/**
 *
 * @author kvaradar
 */
public interface Entry<K,V> {


    public K getKey();

    public V getValue();


}
