org.jaudiotagger.tag.datatype
Interface HashMapInterface<K,V>

All Known Implementing Classes:
NumberHashMap, StringHashMap

public interface HashMapInterface<K,V>

Represents an interface allowing maping from key to value and value to key


Method Summary
 java.util.Map<K,V> getKeyToValue()
           
 java.util.Map<V,K> getValueToKey()
           
 java.util.Iterator<V> iterator()
           
 

Method Detail

getKeyToValue

java.util.Map<K,V> getKeyToValue()
Returns:
a mapping between the key within the frame and the value

getValueToKey

java.util.Map<V,K> getValueToKey()
Returns:
a mapping between the value to the key within the frame

iterator

java.util.Iterator<V> iterator()
Returns:
an interator of the values within the map