Appends "true".
(int index)
| 1156 | |
| 1157 | /** Appends {@code "true"}. */ |
| 1158 | private void appendTrue (int index) { |
| 1159 | items[index++] = 't'; |
| 1160 | items[index++] = 'r'; |
| 1161 | items[index++] = 'u'; |
| 1162 | items[index] = 'e'; |
| 1163 | size += TRUE_STRING_SIZE; |
| 1164 | } |
| 1165 | |
| 1166 | /** Appends an iterable placing separators between each value, but not before the first or after the last. Each object is |
| 1167 | * appended using {@link #append(Object)}. |