Skip to content

Instantly share code, notes, and snippets.

@lene
Last active October 3, 2022 18:26
Show Gist options
  • Save lene/c7cc9d69020262b418e38a6bcf1147a8 to your computer and use it in GitHub Desktop.
Save lene/c7cc9d69020262b418e38a6bcf1147a8 to your computer and use it in GitHub Desktop.
Scala: print names and types of all attributes of an unknown object
UNKNOWN_OBJECT.getClass.getDeclaredFields.foreach(v => println(s"${v.getName}: $v"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment