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

Quick Search    Search Deep

Uses of Interface
java.nio.channels.ReadableByteChannel

Uses of ReadableByteChannel in java.nio.channels
 

Subinterfaces of ReadableByteChannel in java.nio.channels
 interface ByteChannel
           
 interface ScatteringByteChannel
           
 

Classes in java.nio.channels that implement ReadableByteChannel
 class DatagramChannel
           
 class FileChannel
           
static class Pipe.SourceChannel
           
 class SocketChannel
           
 

Methods in java.nio.channels that return ReadableByteChannel
static ReadableByteChannel Channels.newChannel(java.io.InputStream in)
          Constructs a channel that reads bytes from the given stream.
 

Methods in java.nio.channels with parameters of type ReadableByteChannel
(package private) static java.io.InputStream VMChannels.newInputStream(ReadableByteChannel ch)
          Constructs a stream that reads bytes from the given channel.
abstract  long FileChannel.transferFrom(ReadableByteChannel src, long position, long count)
          Transfers bytes from the given readable channel into this channel.
static java.io.InputStream Channels.newInputStream(ReadableByteChannel ch)
          Constructs a stream that reads bytes from the given channel.
static java.io.Reader Channels.newReader(ReadableByteChannel ch, java.nio.charset.CharsetDecoder dec, int minBufferCap)
          Constructs a reader that decodes bytes from the given channel using the given decoder.
static java.io.Reader Channels.newReader(ReadableByteChannel ch, java.lang.String csName)
          Constructs a reader that decodes bytes from the given channel according to the named charset.