Skip to content

Instantly share code, notes, and snippets.

@electrum
Created August 24, 2012 22:06
Show Gist options
  • Save electrum/3456269 to your computer and use it in GitHub Desktop.
Save electrum/3456269 to your computer and use it in GitHub Desktop.
Guava Objects.toStringHelper template for IntelliJ IDEA
public String toString() {
#set ($autoImportPackages = "com.google.common.base.Objects")
return Objects.toStringHelper(this)
#foreach ($member in $members)
.add("$member.name", $member.accessor)
#end
.toString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment