I've just checked-in a test for my library dollar:
@Test
public void join() {
List<Integer> list = Arrays.asList(1, 2, 3, 4, 5);
String string = $(list).join(",");
}
it create a fluent wrapper around lists/arrays/strings/etc using only one static import: $
.
NB:
using ranges the previous list can be re-writed as $(1, 5).join(",")