No examples for this method. 
     
 
     
      Frequently called with: [Clear]  
     
 
      
    
 
     
     
     -1 
    
 
     
     
   | ByteChannel | A ByteChannel is both readable and writable. | 
| Channel | A channel is a conduit to I/O services covering such items as files, sockets, hardware devices, I/O ports or some software component. | 
| GatheringByteChannel | The interface for channels that can write a set of buffers in a single operation. | 
| InterruptibleChannel | Channels that implement this interface can be asynchronously closed and interrupted. | 
| ReadableByteChannel | A ReadableByteChannelis a type ofChannelthat can read bytes. | 
| ScatteringByteChannel | The interface for channels that can read data into a set of buffers in a single operation. | 
| WritableByteChannel | A WritableByteChannelis a type ofChannelthat can write bytes. | 
| Channels | This class provides several utilities to get I/O streams from channels. | 
| DatagramChannel | A DatagramChannelis a selectable channel that represents a partial abstraction of a datagram socket. | 
| FileChannel | An abstract channel type for interaction with a platform file. | 
| FileChannel.MapMode | MapModedefines file mapping mode constants. | 
| FileLock | A FileLockrepresents a locked region of a file. | 
| Pipe | A pipe contains two channels, forming a unidirectional pipe. | 
| Pipe.SinkChannel | Writable sink channel used to write to a pipe. | 
| Pipe.SourceChannel | Readable source channel used to read from a pipe. | 
| SelectableChannel | A channel that can be used with a Selector. | 
| SelectionKey | A SelectionKeyrepresents the relationship between a channel and a selector for which the channel is registered. | 
| Selector | A controller for the selection of SelectableChannelobjects. | 
| ServerSocketChannel | A ServerSocketChannelis a partial abstraction of a selectable, stream-oriented listening socket. | 
| SocketChannel | A SocketChannelis a selectable channel that provides a partial abstraction of stream connecting socket. | 
| AlreadyConnectedException | An AlreadyConnectedExceptionis thrown when an attempt is made to connect a SocketChannel that is already connected. | 
| AsynchronousCloseException | An AsynchronousCloseExceptionis thrown when the underlying channel for an I/O operation is closed by another thread. | 
| CancelledKeyException | A CancelledKeyExceptionis thrown when an invalid selection key is used. | 
| ClosedByInterruptException | A ClosedByInterruptExceptionis thrown when a thread is interrupted in a blocking I/O operation. | 
| ClosedChannelException | A ClosedChannelExceptionis thrown when a channel is closed for the type of operation attempted. | 
| ClosedSelectorException | A ClosedSelectorExceptionis thrown when aselectoris closed and an I/O operation is attempted. | 
| ConnectionPendingException | A ConnectionPendingExceptionis thrown when an attempt is made to connect aSocketChannelthat has a non-blocking connection already underway. | 
| FileLockInterruptionException | A FileLockInterruptionExceptionis thrown when a thread is interrupted while waiting to acquire a file lock. | 
| IllegalBlockingModeException | An IllegalBlockingModeExceptionis thrown when an operation that requires a specific blocking mode is invoked on a channel that is in a different blocking mode. | 
| IllegalSelectorException | An IllegalSelectorExceptionis thrown when a call is made to register a channel on a selector that has been created by a different provider. | 
| NoConnectionPendingException | A NoConnectionPendingExceptionis thrown ifSocketChannel'sfinishConnectmethod is called before theSocketChannel'sconnect(java.net.SocketAddress)connect} method completed without error. | 
| NonReadableChannelException | A NonReadableChannelExceptionis thrown when attempting to read from a channel that is not open for reading. | 
| NonWritableChannelException | A NonWritableChannelExceptionis thrown when attempting to write to a channel that is not open for writing. | 
| NotYetBoundException | A NotYetBoundExceptionis thrown if the server socket channel is not bound before an I/O operation is made. | 
| NotYetConnectedException | A NotYetConnectedExceptionis thrown if the socket channel is not connected before an I/O operation is invoked. | 
| OverlappingFileLockException | An OverlappingFileLockExceptionis thrown when attempting to acquire a lock that overlaps an existing or pending lock held by this process. | 
| UnresolvedAddressException | An UnresolvedAddressExceptionis thrown when trying to use an unresolved network address in a network operation. | 
| UnsupportedAddressTypeException | An UnsupportedAddressTypeExceptionis thrown when connecting or binding to an unsupported address type. |