Uses of Class
com.google.common.io.CharSource
-
Packages that use CharSource Package Description com.google.common.io This package contains utility methods and classes for working with Java I/O; for example input streams, output streams, readers, writers, and files.com.google.common.reflect This package contains utilities to work with Java reflection. -
-
Uses of CharSource in com.google.common.io
Subclasses of CharSource in com.google.common.io Modifier and Type Class Description (package private) classByteSource.AsCharSourceA char source that reads bytes from this source and decodes them as characters using a charset.private static classCharSource.CharSequenceCharSourceprivate static classCharSource.ConcatenatedCharSourceprivate static classCharSource.EmptyCharSourceprivate static classCharSource.StringCharSourceSubclass specialized for string instances.Fields in com.google.common.io with type parameters of type CharSource Modifier and Type Field Description private java.util.Iterator<? extends CharSource>MultiReader. itprivate java.lang.Iterable<? extends CharSource>CharSource.ConcatenatedCharSource. sourcesMethods in com.google.common.io that return CharSource Modifier and Type Method Description CharSourceByteSource. asCharSource(java.nio.charset.Charset charset)Returns aCharSourceview of this byte source that decodes bytes read from this source as characters using the givenCharset.CharSourceByteSource.EmptyByteSource. asCharSource(java.nio.charset.Charset charset)CharSourceCharSource.AsByteSource. asCharSource(java.nio.charset.Charset charset)static CharSourceFiles. asCharSource(java.io.File file, java.nio.charset.Charset charset)Returns a newCharSourcefor reading character data from the given file using the given character set.static CharSourceMoreFiles. asCharSource(java.nio.file.Path path, java.nio.charset.Charset charset, java.nio.file.OpenOption... options)CharSourceMoreFiles.PathByteSource. asCharSource(java.nio.charset.Charset charset)static CharSourceResources. asCharSource(java.net.URL url, java.nio.charset.Charset charset)Returns aCharSourcethat reads from the given URL using the given character set.static CharSourceCharSource. concat(CharSource... sources)Concatenates multipleCharSourceinstances into a single source.static CharSourceCharSource. concat(java.lang.Iterable<? extends CharSource> sources)Concatenates multipleCharSourceinstances into a single source.static CharSourceCharSource. concat(java.util.Iterator<? extends CharSource> sources)Concatenates multipleCharSourceinstances into a single source.static CharSourceCharSource. empty()Returns an immutableCharSourcethat contains no characters.static CharSourceCharSource. wrap(java.lang.CharSequence charSequence)Returns a view of the given character sequence as aCharSource.Methods in com.google.common.io with parameters of type CharSource Modifier and Type Method Description static CharSourceCharSource. concat(CharSource... sources)Concatenates multipleCharSourceinstances into a single source.ByteSourceBaseEncoding. decodingSource(CharSource encodedSource)Returns aByteSourcethat reads base-encoded bytes from the specifiedCharSource.Method parameters in com.google.common.io with type arguments of type CharSource Modifier and Type Method Description static CharSourceCharSource. concat(java.lang.Iterable<? extends CharSource> sources)Concatenates multipleCharSourceinstances into a single source.static CharSourceCharSource. concat(java.util.Iterator<? extends CharSource> sources)Concatenates multipleCharSourceinstances into a single source.Constructor parameters in com.google.common.io with type arguments of type CharSource Constructor Description ConcatenatedCharSource(java.lang.Iterable<? extends CharSource> sources)MultiReader(java.util.Iterator<? extends CharSource> readers) -
Uses of CharSource in com.google.common.reflect
Methods in com.google.common.reflect that return CharSource Modifier and Type Method Description CharSourceClassPath.ResourceInfo. asCharSource(java.nio.charset.Charset charset)Returns aCharSourceview of the resource from which its bytes can be read as characters decoded with the givencharset.
-