Package | Description |
---|---|
com.healthmarketscience.jackcess.util |
Modifier and Type | Method and Description |
---|---|
static MemFileChannel |
MemFileChannel.newChannel()
Creates a new read/write, empty MemFileChannel.
|
static MemFileChannel |
MemFileChannel.newChannel(File file)
Creates a new read/write MemFileChannel containing the contents of the
given File.
|
static MemFileChannel |
MemFileChannel.newChannel(File file,
String mode)
Creates a new MemFileChannel containing the contents of the
given File with the given mode (for mode details see
RandomAccessFile.RandomAccessFile(File,String) ). |
static MemFileChannel |
MemFileChannel.newChannel(InputStream in)
Creates a new read/write MemFileChannel containing the contents of the
given InputStream.
|
static MemFileChannel |
MemFileChannel.newChannel(InputStream in,
String mode)
Creates a new MemFileChannel containing the contents of the
given InputStream with the given mode (for mode details see
RandomAccessFile.RandomAccessFile(File,String) ). |
static MemFileChannel |
MemFileChannel.newChannel(Path file)
Creates a new read/write MemFileChannel containing the contents of the
given Path.
|
static MemFileChannel |
MemFileChannel.newChannel(Path file,
OpenOption... opts)
Creates a new MemFileChannel containing the contents of the
given Path with the given mode (for mode details see
RandomAccessFile.RandomAccessFile(File,String) ). |
static MemFileChannel |
MemFileChannel.newChannel(ReadableByteChannel in)
Creates a new read/write MemFileChannel containing the contents of the
given ReadableByteChannel.
|
static MemFileChannel |
MemFileChannel.newChannel(ReadableByteChannel in,
String mode)
Creates a new MemFileChannel containing the contents of the
given ReadableByteChannel with the given mode (for mode details see
RandomAccessFile.RandomAccessFile(File,String) ). |
Copyright © 2005–2024 OpenHMS. All rights reserved.