Skip to content

Instantly share code, notes, and snippets.

@peter-varga-sp
Created December 19, 2016 13:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save peter-varga-sp/7add26e1f60f23448b3718accec49f54 to your computer and use it in GitHub Desktop.
Save peter-varga-sp/7add26e1f60f23448b3718accec49f54 to your computer and use it in GitHub Desktop.
ToString() method example generated by JsonToStringBuilder
/* (non-Javadoc)
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
JsonToStringBuilder builder = new JsonToStringBuilder(this);
builder.append("name", name).append("city", city).append("country", country);
return builder.build();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment