Searched defs:asCharSink (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/io/
H A DByteSink.java58 public CharSink asCharSink(Charset charset) { method in class:ByteSink
168 return ByteSink.this.toString() + ".asCharSink(" + charset + ")";
H A DCharStreams.java117 * @deprecated Use {@link ByteSink#asCharSink(Charset)} instead. This method
124 ByteStreams.asByteSink(out).asCharSink(charset));
140 asCharSink(to).write(from);
159 return asCharSource(from).copyTo(asCharSink(to));
592 public static CharSink asCharSink( method in class:CharStreams
603 return "CharStreams.asCharSink(" + supplier + ")";
H A DFiles.java231 public static CharSink asCharSink(File file, Charset charset, method in class:Files
233 return asByteSink(file, modes).asCharSink(charset);
315 * @deprecated Use {@link #asCharSink(File, Charset)}. This method is
334 * @deprecated Use {@link #asCharSink(File, Charset, FileWriteMode...)},
341 return CharStreams.asOutputSupplier(asCharSink(file, charset, modes(append)));
456 * @deprecated Use {@code from.copyTo(Files.asCharSink(to, charset))} after
463 CharStreams.asCharSource(from).copyTo(asCharSink(to, charset));
478 asCharSink(to, charset).write(from);
509 asCharSink(to, charset, modes(append)).write(from);
529 asCharSource(from, charset).copyTo(CharStreams.asCharSink(t
[all...]

Completed in 143 milliseconds