Uses of Class
edu.rice.cs.plt.io.DirectInputStream

Packages that use DirectInputStream
edu.rice.cs.plt.io Provides extensions to the java.io package, which provides character- and byte- based streams and buffers, files, file filters, and serialization. 
 

Uses of DirectInputStream in edu.rice.cs.plt.io
 

Subclasses of DirectInputStream in edu.rice.cs.plt.io
 class WrappedDirectInputStream
          An implementation of DirectInputStream that inherits that class's default implementations and delegates all other operations to the wrapped InputStream.
 

Methods in edu.rice.cs.plt.io that return DirectInputStream
 DirectInputStream LinkedInputAndOutputStream.inputStream()
           
 DirectInputStream ExpandingByteBuffer.inputStream()
          Create an input stream providing read access to the buffer.
static DirectInputStream WrappedDirectInputStream.makeDirect(InputStream stream)
          If the input is a DirectInputStream, cast it; otherwise, create a WrappedDirectInputStream.