Lines Matching full:link
43 * {@code Readable & Closeable}. A {@link java.io.Reader} implements both of
45 * {@link java.io.Writer}.
57 * Returns a factory that will supply instances of {@link StringReader} that
73 * Returns a factory that will supply instances of {@link InputStreamReader},
74 * using the given {@link InputStream} factory and character set.
92 * Returns a factory that will supply instances of {@link OutputStreamWriter},
93 * using the given {@link OutputStream} factory and character set.
132 * Opens {@link Readable} and {@link Appendable} objects from the
161 * Opens a {@link Readable} object from the supplier, copies all characters
162 * to the {@link Appendable} object, and closes the input. Does not close
184 * Copies all characters between the {@link Readable} and {@link Appendable}
208 * Reads all characters from a {@link Readable} object into a {@link String}.
220 * Returns the characters from a {@link Readable} & {@link Closeable} object
221 * supplied by a factory as a {@link String}.
233 * Reads all characters from a {@link Readable} object into a new
234 * {@link StringBuilder} instance. Does not close the {@code Readable}.
237 * @return a {@link StringBuilder} containing all the characters
247 * Returns the characters from a {@link Readable} & {@link Closeable} object
248 * supplied by a factory as a new {@link StringBuilder} instance.
267 * Reads the first line from a {@link Readable} & {@link Closeable} object
289 * Reads all of the lines from a {@link Readable} & {@link Closeable} object
294 * @return a mutable {@link List} containing all the lines
311 * Reads all of the lines from a {@link Readable} object. The lines do
316 * should use the {@link Files#readLines} and {@link Resources#readLines}
320 * @return a mutable {@link List} containing all the lines
334 * Streams lines from a {@link Readable} and {@link Closeable} object
363 * Joins multiple {@link Reader} suppliers into a single supplier.
367 * <p>Reading from the joined reader will throw a {@link NullPointerException}
386 /** Varargs form of {@link #join(Iterable)}. */
419 * Returns a Writer that sends all output to the given {@link Appendable}
420 * target. Closing the writer will close the target if it is {@link
421 * Closeable}, and flushing the writer will flush the target if it is {@link