Using Google Guava's Objects.ToStringHelper

JavaGuavaTostring

Java Problem Overview


I used ToStringBuilder.reflectionToString(class) in commons-lang, to implement toString() for simple DTOs. Now I'm trying to use Google Guava instead of Apache commons library. And I found Objects.ToStringHelper in Guava. But it's too verbose if there're lots of members in the class. For example:

@Override
public String toString() {
	return MoreObjects.toStringHelper(this.getClass()).add("name", name)
			.add("emailAddress", emailAddress)
			.add("department", department).add("yearJoined", yearJoined)
			.toString();
}

is much simpler if I use commons-lang:

@Override
public String toString() {
    return ToStringBuilder.reflectionToString(this);
}

Is there any better ways to implement toString() with Guava, not with commons-lang?

Guava docs

Java Solutions


Solution 1 - Java

I have a little trick for Guava's com.google.common.base.MoreObjects.toStringHelper(). I configured IntelliJ IDEA to use it when auto-generating toString() methods. I assume you can do the same in Eclipse. Here's how to do it in Intellij:

  • go inside a class

  • hit Alt + Insert to popup the "Generate" menu

  • choose toString()

  • click the "Settings" button

  • go to the "Templates" tab

  • create a new template named "Guava's MoreObjects.toStringHelper()" (I did it by copying the "ToStringBuilder" template)

  • change the template to:

      public String toString() {
      #set ($autoImportPackages = "com.google.common.base.MoreObjects")
          return MoreObjects.toStringHelper(this)
      #foreach ($member in $members)
          .add("$member.name", $member.accessor)
      #end
          .toString();
      }
    
  • save the template, close the "Settings" and "Generate toString()" windows

  • you can now choose the Guava's MoreObjects.toStringHelper() template when generating toString() methods

When you add a new field to the class, simply re-generate the toString() method (IDEA will ask you to confirm that you want to replace the existing toString() method).

Solution 2 - Java

MoreObjects.toStringHelper is intended to help you write toString() methods with a consistent format easily, but it gives you control over what fields you include in toString() and should have performance comparable to writing it out manually. reflectionToString is shorter to type, but it doesn't give you explicit control over the included fields and, well, it uses reflection. I don't see it as a better alternative.

As a side note, I think using toStringHelper looks a lot cleaner if you put one add call per line.

Guava docs

Solution 3 - Java

There is a plugin http://sourceforge.net/projects/guavaeclipse/ (really small one) which can generate toString methods (and equals hashcode as well) using Guava classes. This is a nice solution because generated methods are really small and do not clutter the class.

Solution 4 - Java

It is worth noting that Objects.toStringHelper has been deprecated (to be removed completely in June 2016) in favor of MoreObjects.toStringHelper. I have copied the default Guava template in my Intellij IDE into a new one that uses the MoreObjects instead. Cheers.

Guava docs

Solution 5 - Java

Of the available Eclipse plugins, guavaeclipse is still using MoreObjects.toStringHelper, but Jenerate uses MoreObjects.toStringHelper and works like a charm.

Guava docs

Solution 6 - Java

In eclipse you can create a template (not as powerfull as IntelliJ https://stackoverflow.com/a/9445402/1301197 ). It will not loop across all member fields for you but you get at least the surrounding code

windows > preferences > Java > Editor > Templates

${:import(com.google.common.base.MoreObjects)}
@Override
public String toString() {
    return MoreObjects.toStringHelper(this)
	.add("${field}",${field})
    .toString();
}

This will add the import and you will get something like this if you enter id as the field. Then up to you to add the remaining fields.

public String toString()
{
    return MoreObjects.toStringHelper(this).add("id", id).toString();
}

Note that there is probably a better solution by using eclipse toString() generator and creating a custom toString() builder. But this is too much work for a lazy man like me.

Right click then source > generate toString() and select Custom toString() Builder inside code style.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionphilipjkimView Question on Stackoverflow
Solution 1 - JavaEtienne NeveuView Answer on Stackoverflow
Solution 2 - JavaColinDView Answer on Stackoverflow
Solution 3 - Javamarek.dominiakView Answer on Stackoverflow
Solution 4 - JavaMorgan KobeissiView Answer on Stackoverflow
Solution 5 - JavaJamesView Answer on Stackoverflow
Solution 6 - JavaRonan QuillevereView Answer on Stackoverflow