Appends the string representation of the boolean argument to the string builder. The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder.
(boolean b)
| 118 | * The argument is converted to a string as if by the method String.valueOf, and the characters of that string are then appended to this string builder. |
| 119 | */ |
| 120 | public java.lang.StringBuilder append(boolean b){ |
| 121 | if(b) { |
| 122 | return append("true"); |
| 123 | } |
| 124 | return append("false"); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Appends the string representation of the char argument to this string builder. |