Appends "false".
(int index)
| 825 | |
| 826 | /** Appends {@code "false"}. */ |
| 827 | private void appendFalse (int index) { |
| 828 | items[index++] = 'f'; |
| 829 | items[index++] = 'a'; |
| 830 | items[index++] = 'l'; |
| 831 | items[index++] = 's'; |
| 832 | items[index] = 'e'; |
| 833 | size += FALSE_STRING_SIZE; |
| 834 | } |
| 835 | |
| 836 | /** Appends an object to this CharArray padding on the left to a fixed width. The {@code String.valueOf} of the {@code int} |
| 837 | * value is used. If the formatted value is larger than the length, the left hand side is lost. |