Skip to content

Instantly share code, notes, and snippets.

@HopefulLlama
Last active June 4, 2024 08:17
Show Gist options
  • Save HopefulLlama/edecc82e9e6145544f34 to your computer and use it in GitHub Desktop.
Save HopefulLlama/edecc82e9e6145544f34 to your computer and use it in GitHub Desktop.
Print all properties of a Groovy object
println object.properties
.sort{it.key}
.collect{it}
.findAll{!['class', 'active'].contains(it.key)}
.join('\n')
@HopefulLlama
Copy link
Author

It can sometimes be useful to remove 'class' from line 4, if you are interested in the class of the object too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment