Uses of Interface
com.google.common.io.ByteArrayDataInput
-
Packages that use ByteArrayDataInput 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. -
-
Uses of ByteArrayDataInput in com.google.common.io
Classes in com.google.common.io that implement ByteArrayDataInput Modifier and Type Class Description private static class
ByteStreams.ByteArrayDataInputStream
Methods in com.google.common.io that return ByteArrayDataInput Modifier and Type Method Description static ByteArrayDataInput
ByteStreams. newDataInput(byte[] bytes)
Returns a newByteArrayDataInput
instance to read from thebytes
array from the beginning.static ByteArrayDataInput
ByteStreams. newDataInput(byte[] bytes, int start)
Returns a newByteArrayDataInput
instance to read from thebytes
array, starting at the given position.static ByteArrayDataInput
ByteStreams. newDataInput(java.io.ByteArrayInputStream byteArrayInputStream)
Returns a newByteArrayDataInput
instance to read from the givenByteArrayInputStream
.
-