| Interface | Description |
|---|---|
| RandomAccess |
An interface to allow data to be stored completely in memory or
to use a scratch file on the disk.
|
| RandomAccessRead |
An interface allowing random access read operations.
|
| RandomAccessWrite |
An interface allowing random access write operations.
|
| Class | Description |
|---|---|
| IOUtils |
This class contains various I/O-related methods.
|
| RandomAccessInputStream |
An InputStream which reads from a RandomAccessRead.
|
| RandomAccessOutputStream |
An OutputStream which writes to a RandomAccessWrite.
|
| RandomAccessReadBuffer |
An implementation of the RandomAccessRead interface to store data in memory.
|
| RandomAccessReadBufferedFile |
Provides random access to portions of a file combined with buffered reading of content.
|
| RandomAccessReadMemoryMappedFile |
An implementation of the RandomAccess interface backed by a memory mapped file channel.
|
| RandomAccessReadView |
This class provides a view of a part of a random access read.
|
| SequenceRandomAccessRead |
Wrapper class to combine several RandomAccessRead instances so that they can be accessed as one big RandomAccessRead.
|
Copyright © 2002–2022 The Apache Software Foundation. All rights reserved.