I am trying to implement a dictionary (as in the physical book). I have a list of words and their meanings.
What data structure / type does Java provide to store a list of words and their meanings as key/value pairs.
How, given a key, can I find and return the value?