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

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

Introduction

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

The text is from its open source code.

Subclass

com.google.common.io.CharSource has subclasses.
Click this link to see all its subclasses.

Constructor

CharSource()
Constructor for use by subclasses.

Method

CharSourceconcat(Iterable sources)
Concatenates multiple CharSource instances into a single source.
CharSourceconcat(Iterator sources)
Concatenates multiple CharSource instances into a single source.
CharSourceconcat(CharSource... sources)
Concatenates multiple CharSource instances into a single source.
longcopyTo(Appendable appendable)
Appends the contents of this source to the given Appendable (such as a Writer ).
longcopyTo(CharSink sink)
Copies the contents of this source to the given sink.
BufferedReaderopenBufferedStream()
Opens a new BufferedReader for reading from this source.
ReaderopenStream()
Opens a new Reader for reading from this source.
Stringread()
Reads the contents of this source as a string.
StringreadFirstLine()
Reads the first link of this source as a string.
TreadLines(LineProcessor processor)
Reads lines of text from this source, processing each line as it is read using the given LineProcessor processor .
ImmutableListreadLines()
Reads all the lines of this source as a list of strings.
StringtoString()
Returns a string representation of the object.
CharSourcewrap(CharSequence charSequence)
Returns a view of the given character sequence as a CharSource .