char
StringBuffer
StringBuilder
例:
new StringBuilder('(').append("1").append(')');
クイックフィックス適用後:
new StringBuilder("(").append("1").append(')');