String conversions in Java
Using +
on strings creates multiple string instances, so using valueOf
is probably a bit more performant.
Since you're mostly using it in GWT, I'd go with the ""+ method, since it's the neatest looking, and it's going to end up converted to javascript anyway, where there is no such thing as a StringBuilder.
Please don't hurt me Skeet Fanboys ;)