Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Interface
java.nio.channels.WritableByteChannel

Uses of WritableByteChannel in java.nio.channels
 

Subinterfaces of WritableByteChannel in java.nio.channels
 interface ByteChannel
           
 interface GatheringByteChannel
           
 

Classes in java.nio.channels that implement WritableByteChannel
 class DatagramChannel
           
 class FileChannel
           
static class Pipe.SinkChannel
           
 class SocketChannel
           
 

Methods in java.nio.channels that return WritableByteChannel
static WritableByteChannel Channels.newChannel(java.io.OutputStream out)
          Constructs a channel that writes bytes to the given stream.
 

Methods in java.nio.channels with parameters of type WritableByteChannel
(package private) static java.io.OutputStream VMChannels.newOutputStream(WritableByteChannel ch)
          Constructs a stream that writes bytes to the given channel.
abstract  long FileChannel.transferTo(long position, long count, WritableByteChannel target)
          Transfers bytes from this channel's file to the given writable byte channel.
static java.io.OutputStream Channels.newOutputStream(WritableByteChannel ch)
          Constructs a stream that writes bytes to the given channel.
static java.io.Writer Channels.newWriter(WritableByteChannel ch, java.nio.charset.CharsetEncoder enc, int minBufferCap)
          Constructs a writer that encodes characters using the given encoder and writes the resulting bytes to the given channel.
static java.io.Writer Channels.newWriter(WritableByteChannel ch, java.lang.String csName)
          Constructs a writer that encodes characters according to the named charset and writes the resulting bytes to the given channel.