Appends a string followed by a new line to this CharArray. Appending null will call #appendNull().
(@Null String str)
| 944 | |
| 945 | /** Appends a string followed by a new line to this CharArray. Appending null will call {@link #appendNull()}. */ |
| 946 | public CharArray appendLine (@Null String str) { |
| 947 | append(str); |
| 948 | return append('\n'); |
| 949 | } |
| 950 | |
| 951 | /** Appends part of a string followed by a new line to this CharArray. Appending null will call {@link #appendNull()}. |
| 952 | * @param start the start index, inclusive |