Skip to content

Instantly share code, notes, and snippets.

@ppazos
Created March 27, 2015 00:13
Show Gist options
  • Save ppazos/c0bcdd3ed90aafa9d489 to your computer and use it in GitHub Desktop.
Save ppazos/c0bcdd3ed90aafa9d489 to your computer and use it in GitHub Desktop.
Groovy get all fields and values
object.class.declaredFields.findAll{!it.synthetic}.collectEntries{ [ (it.name):this."$it.name" ] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment