Interface Entry<K,V>
-
- All Known Implementing Classes:
- AbstractMap.MapEntry, TestMap.TestEntry
public interface Entry<K,V>
Interface for a key-value pair.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description K
getKey()
Returns the key stored in this entry.V
getValue()
Returns the value stored in this entry.
-