Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
def map = [name:"Gromit", likes:"cheese", id:1234]

I would like to access map in such a way that I can get the key

something like the output should be

map.keys returns array of string. basically i just want to get the keys

output:

name
likes
id
share|improve this question

1 Answer

up vote 10 down vote accepted

try map.keySet()

and if you want an array:

map.keySet() as String[]; // thx @tim_yates

Or, more groovy-ish:

map.each{
    key, value -> print key;
}
share|improve this answer
or map.keySet() as String[] – tim_yates Feb 4 '11 at 12:49
@tim nice. I use groovy a lot, but it's still like black magic to me :-) – Sean Patrick Floyd Feb 4 '11 at 12:55
1  
haha, I know what you mean... I still learn new unexpected things most days :-D Today, it was this: groovyconsole.appspot.com/script/408001 – tim_yates Feb 4 '11 at 12:57
@tim ouch, my brain hurts – Sean Patrick Floyd Feb 4 '11 at 13:04
@time nice one, didn't know about that either – Don Feb 4 '11 at 15:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.