org.jminor.common.model.valuemap
Interface ValueProvider<K,V>

Type Parameters:
K - the type of the map keys
V - the type of the map values
All Known Subinterfaces:
Entity, Entity.Key, ValueChangeMap<K,V>, ValueMap<K,V>
All Known Implementing Classes:
ValueChangeMapImpl, ValueMapImpl

public interface ValueProvider<K,V>

Provides values mapped to keys.


Method Summary
 V getValue(K key)
          Retrieves the value mapped to the given key
 

Method Detail

getValue

V getValue(K key)
Retrieves the value mapped to the given key

Parameters:
key - the key
Returns:
the value mapped to the given key, null if no such mapping exists