Inserts the string representation of the specified boolean value at the specified offset. The boolean value is converted to a string according to the rule defined by String#valueOf(boolean). @param offset the index to insert at. @param b the {@c
(int offset, boolean b)
| 375 | * @see String#valueOf(boolean) |
| 376 | */ |
| 377 | public StringBuilder insert(int offset, boolean b) { |
| 378 | insert0(offset, b ? "true" : "false"); //$NON-NLS-1$ //$NON-NLS-2$ |
| 379 | return this; |
| 380 | } |
| 381 | |
| 382 | /** |
| 383 | * Inserts the string representation of the specified {@code char} value at |