Lines Matching defs:lines
2967 * Read all lines from a file. This method ensures that the file is
2983 * convenient to read all lines in a single operation. It is not intended
2991 * @return the lines from the file as a {@code List}; whether the {@code
3080 * Write lines of text to a file. Each line is a char sequence and is
3094 * lines have been written (or an I/O error or other runtime exception is
3100 * @param lines
3119 public static Path write(Path path, Iterable<? extends CharSequence> lines,
3123 // ensure lines is not null before opening file
3124 Objects.requireNonNull(lines);
3128 for (CharSequence line: lines) {