|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RandomAccess | |
com.imagero.uio | |
com.imagero.uio.buffer | |
com.imagero.uio.buffer.fm | |
com.imagero.uio.io |
Uses of RandomAccess in com.imagero.uio |
Classes in com.imagero.uio that implement RandomAccess | |
class |
AbstractRandomAccess
implementation of RandomAccess |
class |
RandomAccessBuffer
Makes possible to represent (multiple) Buffers as RandomAccess |
class |
RandomAccessByteArray
Makes possible to access byte array as RandomAccess |
class |
RandomAccessFileWrapper
Wrap RandomAccessFile in RandomAccess Attention - this class is not buffered. |
Methods in com.imagero.uio that return RandomAccess | |
static RandomAccess |
RandomAccessFactory.create(java.io.File f,
int byteOrder)
create RandomAccess to read from and write to specified file. |
static RandomAccess |
RandomAccessFactory.create(java.io.File f)
create RandomAccess (with BIG_ENDIAN byte order) to read from and write to specified file. |
static RandomAccess |
RandomAccessFactory.create(java.lang.String name,
int byteOrder)
create RandomAccess to read from and write to file with specified name. |
static RandomAccess |
RandomAccessFactory.create(java.lang.String name)
create RandomAccess with BIG-ENDIAN byte order to read from and write to file with specified name. |
static RandomAccess |
RandomAccessFactory.create(java.io.File file,
long offset,
int byteOrder)
create RandomAccess to read from and write to specified file starting from specified offset in file. |
static RandomAccess |
RandomAccessFactory.create(java.io.File file,
long offset)
create RandomAccess with BIG-ENDIAN byte order to read from and write to specified file starting from specified offset in file. |
static RandomAccess |
RandomAccessFactory.create(java.io.File file,
long offset,
long length,
int byteOrder)
create RandomAccess to read from/write to specified segment of the file. |
static RandomAccess |
RandomAccessFactory.create(java.io.File file,
long offset,
long length)
create RandomAccess with BIG-ENDIAN byte order to read from/write to specified segment of the file. |
static RandomAccess |
RandomAccessFactory.create(java.lang.String name,
long offset,
long length,
int byteOrder)
create RandomAccess to read from/write to segment of the file with specified name. |
static RandomAccess |
RandomAccessFactory.create(java.lang.String name,
long offset,
long length)
create RandomAccess with BIG-ENDIAN byte order to read from/write to segment of the file with specified name. |
static RandomAccess |
RandomAccessFactory.create(java.io.RandomAccessFile raf,
int byteOrder)
create RandomAccess from specified RandomAccessFile |
static RandomAccess |
RandomAccessFactory.create(java.io.RandomAccessFile raf)
create RandomAccess with BIG-ENDIAN byte order from specified RandomAccessFile |
Methods in com.imagero.uio with parameters of type RandomAccess | |
static RandomAccessBuffer |
RandomAccessFactory.createBuffered(RandomAccess ro,
long offset,
int length)
create RandomAccess from specified RandomAccess. |
Uses of RandomAccess in com.imagero.uio.buffer |
Constructors in com.imagero.uio.buffer with parameters of type RandomAccess | |
RABuffer(RandomAccess ra,
long offset,
int length)
|
|
MutableRABufferManager(RandomAccess ra,
long offset,
int length)
create MutableBuffer over RandomAccessRO (with standard Buffer length of 50k) |
|
MutableRABufferManager(RandomAccess ra,
long offset,
int length,
int dsLength)
create MutableBuffer for RandomAccessRO |
Uses of RandomAccess in com.imagero.uio.buffer.fm |
Methods in com.imagero.uio.buffer.fm that return RandomAccess | |
RandomAccess |
OpenFileManager.create(java.io.File f)
create RandomAccess which will be managed by this FileManager |
Uses of RandomAccess in com.imagero.uio.io |
Fields in com.imagero.uio.io declared as RandomAccess | |
protected RandomAccess |
RandomAccessOutputStream.ra
|
Constructors in com.imagero.uio.io with parameters of type RandomAccess | |
TIFFStripInputStream(RandomAccess ra,
int[] stripByteCount,
int[] stripOffsets)
|
|
TIFFStripInputStream(RandomAccess ra,
long startPos,
int[] stripByteCount,
int[] stripOffsets)
|
|
RandomAccessOutputStream(RandomAccess ra)
|
|
RandomAccessOutputStream(RandomAccess ra,
long startPos)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |