Package org.hippoecm.hst.util
Interface KeyValue<K,V>
-
public interface KeyValue<K,V>
Defines a simple key value pair. A Map Entry has considerable additional semantics over and above a simple key-value pair. This interface defines the minimum key value, with just the two get methods.- Version:
- $Id$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description K
getKey()
Returns the key corresponding to the pair.V
getValue()
Returns the value corresponding to the pair.
-