What generics collection class can I use that provides both mapping and array-like functionality. For example, I want to map a String to a Double and I want to reference the value using the key as the index.
collection[key] = collection[key] + double
Does the Google collections library provide such functionality?
Thanks.