| Package | Description |
|---|---|
| com.healthmarketscience.jackcess.util |
| Modifier and Type | Class and Description |
|---|---|
private static class |
MemFileChannel.ReadOnlyChannel
Subclass of MemFileChannel which is read-only.
|
| Modifier and Type | Method and Description |
|---|---|
static MemFileChannel |
MemFileChannel.newChannel()
Creates a new read/write, empty MemFileChannel.
|
static MemFileChannel |
MemFileChannel.newChannel(java.io.File file)
Creates a new read/write MemFileChannel containing the contents of the
given File.
|
static MemFileChannel |
MemFileChannel.newChannel(java.io.File file,
java.lang.String mode)
Creates a new MemFileChannel containing the contents of the
given File with the given mode (for mode details see
RandomAccessFile(File,String)). |
static MemFileChannel |
MemFileChannel.newChannel(java.io.InputStream in)
Creates a new read/write MemFileChannel containing the contents of the
given InputStream.
|
static MemFileChannel |
MemFileChannel.newChannel(java.io.InputStream in,
java.lang.String mode)
Creates a new MemFileChannel containing the contents of the
given InputStream with the given mode (for mode details see
RandomAccessFile(File,String)). |
static MemFileChannel |
MemFileChannel.newChannel(java.nio.channels.ReadableByteChannel in)
Creates a new read/write MemFileChannel containing the contents of the
given ReadableByteChannel.
|
static MemFileChannel |
MemFileChannel.newChannel(java.nio.channels.ReadableByteChannel in,
java.lang.String mode)
Creates a new MemFileChannel containing the contents of the
given ReadableByteChannel with the given mode (for mode details see
RandomAccessFile(File,String)). |
| Constructor and Description |
|---|
ReadOnlyChannel(MemFileChannel channel) |