MCPcopy
hub / github.com/google/guava / writeLines

Method writeLines

guava/src/com/google/common/io/CharSink.java:109–111  ·  view source on GitHub ↗

Writes the given lines of text to this sink with each line (including the last) terminated with the operating system's default line separator. This method is equivalent to {@code writeLines(lines, System.getProperty("line.separator"))}. @throws IOException if an I/O error occurs while writing to th

(Iterable<? extends CharSequence> lines)

Source from the content-addressed store, hash-verified

107 * @throws IOException if an I/O error occurs while writing to this sink
108 */
109 public void writeLines(Iterable<? extends CharSequence> lines) throws IOException {
110 writeLines(lines, System.getProperty("line.separator"));
111 }
112
113 /**
114 * Writes the given lines of text to this sink with each line (including the last) terminated with

Calls 7

openBufferedStreamMethod · 0.95
iteratorMethod · 0.65
valueMethod · 0.65
nextMethod · 0.65
checkNotNullMethod · 0.45
hasNextMethod · 0.45
appendMethod · 0.45