My preference: Ctrl+Shift+f
Though I wish formatters would detect uses of the fluent interface pattern, as I prefer to see method chaining broken 1 per line (or some other constant, if logical), rather than after an arbitrary number of chained invocations determined by the line width.
e.g.
this:
sb.append(callStart.toString(outputFormat)).append(',')
.append(dataDuration).append(',')
.append(callDuration).append(',')
.append(destination).append(',')
.append(area).append(',')
.append(charge).append(',')
.append(balance).append(',');
not this:
sb.append(callStart.toString(outputFormat)).append(',').append(dataDuration).append(',').append(callDuration).append(',').append(destination)
.append(',').append(area).append(',').append(charge).append(',').append(balance).append(',');