Appends the string representation of the boolean argument to the string buffer. 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 buffer.
(boolean b)
| 64 | * 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 buffer. |
| 65 | */ |
| 66 | public java.lang.StringBuffer append(boolean b){ |
| 67 | internal.append(b); |
| 68 | return this; |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Appends the string representation of the char argument to this string buffer. |