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

Packages that use DirectOutputStream
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 DirectOutputStream in edu.rice.cs.plt.io
 

Subclasses of DirectOutputStream in edu.rice.cs.plt.io
 class ChecksumOutputStream
          A stream that accumulates its bytes in a Checksum object.
 class MessageDigestOutputStream
          A stream that accumulates its bytes in a MessageDigest object.
 class OutputStreamSplitter
          An output stream that allows sending the same data to an arbitrary number of streams.
 class VoidOutputStream
          A stream that discards all data written to it.
 class WrappedDirectOutputStream
          An implementation of DirectOutputStream that inherits that class's default implementations and delegates all other operations to the wrapped OutputStream.
 

Methods in edu.rice.cs.plt.io that return DirectOutputStream
static DirectOutputStream WrappedDirectOutputStream.makeDirect(OutputStream stream)
          If the input is a DirectOutputStream, cast it; otherwise, create a WrappedDirectOutputStream.
 DirectOutputStream LinkedInputAndOutputStream.outputStream()
           
 DirectOutputStream ExpandingByteBuffer.outputStream()
          Create an output stream providing write access to the buffer.