NIO2 API

Uses of Interface
org.classpath.icedtea.java.nio.channels.SeekableByteChannel

Packages that use SeekableByteChannel
org.classpath.icedtea.java.nio.channels Defines channels, which represent connections to entities that are capable of performing I/O operations, such as files and sockets; defines selectors, for multiplexed, non-blocking I/O operations. 
org.classpath.icedtea.java.nio.file Define interfaces and classes for the Java virtual machine to access files, file attributes, and file systems. 
org.classpath.icedtea.java.nio.file.spi Service-provider classes for the org.classpath.icedtea.java.nio.file package. 
 

Uses of SeekableByteChannel in org.classpath.icedtea.java.nio.channels
 

Classes in org.classpath.icedtea.java.nio.channels that implement SeekableByteChannel
 class FileChannel
          A channel for reading, writing, mapping, and manipulating a file.
 

Methods in org.classpath.icedtea.java.nio.channels that return SeekableByteChannel
 SeekableByteChannel SeekableByteChannel.positionSBC(long newPosition)
          Sets this channel's position.
 SeekableByteChannel SeekableByteChannel.truncateSBC(long size)
          Truncates the entity, to which this channel is connected, to the given size.
 

Uses of SeekableByteChannel in org.classpath.icedtea.java.nio.file
 

Methods in org.classpath.icedtea.java.nio.file that return SeekableByteChannel
abstract  SeekableByteChannel Path.newByteChannel(OpenOption... options)
          Opens or creates a file, returning a seekable byte channel to access the file.
 SeekableByteChannel FileRef.newByteChannel(OpenOption... options)
          Opens the file referenced by this object, returning a seekable byte channel to access the file.
abstract  SeekableByteChannel SecureDirectoryStream.newByteChannel(Path path, Set<? extends OpenOption> options, FileAttribute<?>... attrs)
          Opens or creates a file in this directory, returning a seekable byte channel to access the file.
abstract  SeekableByteChannel Path.newByteChannel(Set<? extends OpenOption> options, FileAttribute<?>... attrs)
          Opens or creates a file, returning a seekable byte channel to access the file.
 

Uses of SeekableByteChannel in org.classpath.icedtea.java.nio.file.spi
 

Methods in org.classpath.icedtea.java.nio.file.spi that return SeekableByteChannel
 SeekableByteChannel AbstractPath.newByteChannel(OpenOption... options)
           
 


NIO2 API

Copyright © 2007, 2011, Oracle and/or its affiliates. All rights reserved.