Uses of Class
com.google.common.io.ByteSource
-
Packages that use ByteSource Package Description com.google.common.io Utility methods and classes for I/O; for example input streams, output streams, readers, writers, and files.com.google.common.reflect Utilities for reflection. -
-
Uses of ByteSource in com.google.common.io
Methods in com.google.common.io that return ByteSource Modifier and Type Method Description ByteSource
CharSource. asByteSource(java.nio.charset.Charset charset)
Returns aByteSource
view of this char source that encodes chars read from this source as bytes using the givenCharset
.ByteSource
FileBackedOutputStream. asByteSource()
Returns a readableByteSource
view of the data that has been written to this stream.static ByteSource
Files. asByteSource(java.io.File file)
Returns a newByteSource
for reading bytes from the given file.static ByteSource
MoreFiles. asByteSource(java.nio.file.Path path, java.nio.file.OpenOption... options)
Returns a view of the givenpath
as aByteSource
.static ByteSource
Resources. asByteSource(java.net.URL url)
Returns aByteSource
that reads from the given URL.static ByteSource
ByteSource. concat(ByteSource... sources)
Concatenates multipleByteSource
instances into a single source.static ByteSource
ByteSource. concat(java.lang.Iterable<? extends ByteSource> sources)
Concatenates multipleByteSource
instances into a single source.static ByteSource
ByteSource. concat(java.util.Iterator<? extends ByteSource> sources)
Concatenates multipleByteSource
instances into a single source.ByteSource
BaseEncoding. decodingSource(CharSource encodedSource)
Returns aByteSource
that reads base-encoded bytes from the specifiedCharSource
.static ByteSource
ByteSource. empty()
Returns an immutableByteSource
that contains no bytes.ByteSource
ByteSource. slice(long offset, long length)
Returns a view of a slice of this byte source that is at mostlength
bytes long starting at the givenoffset
.static ByteSource
ByteSource. wrap(byte[] b)
Returns a view of the given byte array as aByteSource
.Methods in com.google.common.io with parameters of type ByteSource Modifier and Type Method Description static ByteSource
ByteSource. concat(ByteSource... sources)
Concatenates multipleByteSource
instances into a single source.boolean
ByteSource. contentEquals(ByteSource other)
Checks that the contents of this byte source are equal to the contents of the given byte source.Method parameters in com.google.common.io with type arguments of type ByteSource Modifier and Type Method Description static ByteSource
ByteSource. concat(java.lang.Iterable<? extends ByteSource> sources)
Concatenates multipleByteSource
instances into a single source.static ByteSource
ByteSource. concat(java.util.Iterator<? extends ByteSource> sources)
Concatenates multipleByteSource
instances into a single source. -
Uses of ByteSource in com.google.common.reflect
Methods in com.google.common.reflect that return ByteSource Modifier and Type Method Description ByteSource
ClassPath.ResourceInfo. asByteSource()
Returns aByteSource
view of the resource from which its bytes can be read.
-