Hi I have a map like this :
[this:0, is:1, a:2, file:3, anotherkey:4, aa:5]
I wish I could find the key's given the value of a map. For example, if the value 5 is given I need to return aa from the map.
Is that possible?
|
|
|
I don't know if there's a direct method to get a key for a given value, but using
In general, maps don't need to have an order relation between their entries, but the default implementation for Groovy's literal maps is LinkedHashMap, which is ordered, so the |
|||
|
|
|
You'll probably have to iterate over the entry set yourself and try to find the entry with a matching value. |
|||
|
|
|
|||
|
|
|
There's no specific command for that. Fortunately, as showed here, you can easily get the key(s) for a specific value in a map:
You can do:
If you want all the keys, do something like this:
|
|||
|
|