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

package sortedlistpriorityqueue;

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

    public K getKey();

    public V getValue();

}
