What I want is something like this:
Map<String, Double, String>
Where the first is a key, and the second 2 are attributes of that key. What is the best object for this setup?
Printable View
What I want is something like this:
Map<String, Double, String>
Where the first is a key, and the second 2 are attributes of that key. What is the best object for this setup?
Just define an Object that contains the attributes and use that as the value mapped to the key.