Adds the string representation of the specified boolean to the end of this StringBuffer. If the argument is true the string "true" is appended, otherwise the string "false" is appended. @param b the boolean to append. @return this StringBuffer. @see String#val
(boolean b)
| 106 | * @see String#valueOf(boolean) |
| 107 | */ |
| 108 | public StringBuffer append(boolean b) { |
| 109 | return append(b ? "true" : "false"); //$NON-NLS-1$//$NON-NLS-2$ |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Adds the specified character to the end of this buffer. |
no test coverage detected