|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
BufferedRandomAccessFile
is like a
RandomAccessFile
, but it uses a private buffer so that most
operations do not require a disk access.BufferedRandomAccessFile
on file
in mode mode
, which should be "r" for reading only, or
"rw" for reading and writing.
BufferedRandomAccessFile
on the file named
name
in mode mode
, which should be "r" for
reading only, or "rw" for reading and writing.
BufferedInputStream
adds functionality to another input
stream-namely, the ability to buffer the input and to support the
mark
and reset
methods.BufferedInputStream
and saves its argument, the
input stream in
, for later use.
BufferedInputStream
with the specified buffer
size, and saves its argument, the input stream in
, for
later use.
THash
instance with the default capacity and
load factor.
THash
instance with a prime capacity at or
near the specified capacity and with the default load factor.
THash
instance with a prime capacity at or
near the minimum needed to hold initialCapacity elements with
load factor loadFactor without triggering a rehash.
FastHashMap
instance with the default capacity
and load factor.
FastHashMap
instance with a prime capacity
equal to or greater than initialCapacity and with the default
load factor.
FastHashMap
instance with a prime capacity
equal to or greater than initialCapacity and with the
specified load factor.
FastHashMap
instance which contains the
key/value pairs in map.
TObjectHash
instance with the default
capacity and load factor.
TObjectHash
instance whose capacity is the
next highest prime above initialCapacity + 1 unless that value
is already prime.
TObjectHash
instance with a prime value at
or near the specified capacity and load factor.
mark
method of
InputStream
.
mark
method before subsequent calls to the reset
method fail.
pos
field at the time the last
mark
method was called.
mark
and
reset
methods.
>= desiredCapacity
and
very close to desiredCapacity
(within 11% if
desiredCapacity >= 1000
).
read
method of
InputStream
.
FastHash.tempDisableAutoCompaction()
.
reset
method of
InputStream
.
howManyResults
responses to determine success
of failure.
FastHash.compact()
automatically after a certain number of remove
operations.
skip
method of
InputStream
.
compact
.
len
bytes from the specified byte array starting at
offset off
to this buffered output stream.
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |