I\'m looking to use guava\'s Joiner to join List into one string, but with surrounding strings around each one in the list. So I want
Joiner
List
The way to do this is with a transform, first:
Joiner.on(", ").join(Iterables.transform(names, new Function() { public String apply(String str) { return "your guest " + str + " is here"; } }));