Uses of Class
com.google.common.io.CharSource
Packages that use CharSource
Package
Description
Utility methods and classes for I/O; for example input streams, output streams, readers, writers,
and files.
Utilities for reflection.
-
Uses of CharSource in com.google.common.io
Subclasses of CharSource in com.google.common.ioModifier and TypeClassDescription(package private) class
A char source that reads bytes from this source and decodes them as characters using a charset.private static class
private static final class
private static final class
private static class
Subclass specialized for string instances.Fields in com.google.common.io with type parameters of type CharSourceModifier and TypeFieldDescriptionprivate final Iterator
<? extends CharSource> MultiReader.it
private final Iterable
<? extends CharSource> CharSource.ConcatenatedCharSource.sources
Methods in com.google.common.io that return CharSourceModifier and TypeMethodDescriptionByteSource.asCharSource
(Charset charset) Returns aCharSource
view of this byte source that decodes bytes read from this source as characters using the givenCharset
.ByteSource.EmptyByteSource.asCharSource
(Charset charset) CharSource.AsByteSource.asCharSource
(Charset charset) static CharSource
Files.asCharSource
(File file, Charset charset) Returns a newCharSource
for reading character data from the given file using the given character set.static CharSource
MoreFiles.asCharSource
(Path path, Charset charset, OpenOption... options) MoreFiles.PathByteSource.asCharSource
(Charset charset) static CharSource
Resources.asCharSource
(URL url, Charset charset) Returns aCharSource
that reads from the given URL using the given character set.static CharSource
CharSource.concat
(CharSource... sources) Concatenates multipleCharSource
instances into a single source.static CharSource
CharSource.concat
(Iterable<? extends CharSource> sources) Concatenates multipleCharSource
instances into a single source.static CharSource
CharSource.concat
(Iterator<? extends CharSource> sources) Concatenates multipleCharSource
instances into a single source.static CharSource
CharSource.empty()
Returns an immutableCharSource
that contains no characters.static CharSource
CharSource.wrap
(CharSequence charSequence) Returns a view of the given character sequence as aCharSource
.Methods in com.google.common.io with parameters of type CharSourceModifier and TypeMethodDescriptionstatic CharSource
CharSource.concat
(CharSource... sources) Concatenates multipleCharSource
instances into a single source.final ByteSource
BaseEncoding.decodingSource
(CharSource encodedSource) Returns aByteSource
that reads base-encoded bytes from the specifiedCharSource
.Method parameters in com.google.common.io with type arguments of type CharSourceModifier and TypeMethodDescriptionstatic CharSource
CharSource.concat
(Iterable<? extends CharSource> sources) Concatenates multipleCharSource
instances into a single source.static CharSource
CharSource.concat
(Iterator<? extends CharSource> sources) Concatenates multipleCharSource
instances into a single source.Constructor parameters in com.google.common.io with type arguments of type CharSourceModifierConstructorDescription(package private)
ConcatenatedCharSource
(Iterable<? extends CharSource> sources) (package private)
MultiReader
(Iterator<? extends CharSource> readers) -
Uses of CharSource in com.google.common.reflect
Methods in com.google.common.reflect that return CharSourceModifier and TypeMethodDescriptionfinal CharSource
ClassPath.ResourceInfo.asCharSource
(Charset charset) Returns aCharSource
view of the resource from which its bytes can be read as characters decoded with the givencharset
.