Java com.google.common.io CharStreams fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.io CharStreams fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.io CharStreams.

The text is from its open source code.

Method

WriterasWriter(Appendable target)
Returns a Writer that sends all output to the given Appendable target.
longcopy(Readable from, Appendable to)
Copies all characters between the Readable and Appendable objects.
WriternullWriter()
Returns a Writer that simply discards written chars.
ListreadLines(Readable r)
Reads all of the lines from a Readable object.
TreadLines(Readable readable, LineProcessor processor)
Streams lines from a Readable object, stopping when the processor returns false or all lines have been read and returning the result produced by the processor.
StringtoString(Readable r)
Reads all characters from a Readable object into a String .