12 lines
290 B
Java
12 lines
290 B
Java
package net.datastructures;
|
|
|
|
//begin#fragment Entry
|
|
/** Interface for a key-value pair entry **/
|
|
public interface Entry<K,V> {
|
|
/** Returns the key stored in this entry. */
|
|
public K getKey();
|
|
/** Returns the value stored in this entry. */
|
|
public V getValue();
|
|
}
|
|
//end#fragment Entry
|