Appends the string representation of the specified boolean value. The boolean value is converted to a String according to the rule defined by String#valueOf(boolean). @param b the boolean value to append. @return this builder. @see String#valueOf(boolean)
(boolean b)
| 104 | * @see String#valueOf(boolean) |
| 105 | */ |
| 106 | public StringBuilder append(boolean b) { |
| 107 | append0(b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$ |
| 108 | return this; |
| 109 | } |
| 110 | |
| 111 | /** |
| 112 | * Appends the string representation of the specified {@code char} value. |
no test coverage detected