public class RecordList
extends java.lang.Object
implements java.util.List
Modifier and Type | Field and Description |
---|---|
protected static int |
BLOCKGAB |
protected static int |
BLOCKSIZE |
protected java.nio.ByteBuffer |
buffer |
protected int |
currentBlockOffset |
protected java.io.File |
file |
protected java.nio.channels.FileChannel |
fileChannel |
protected long |
fSize |
protected java.nio.MappedByteBuffer |
mappedByteBuffer |
protected java.io.RandomAccessFile |
raf |
protected static int |
RECSIZE |
protected long |
size |
Constructor and Description |
---|
RecordList(java.io.File file) |
Modifier and Type | Method and Description |
---|---|
void |
add(int index,
java.lang.Object element) |
boolean |
add(java.lang.Object o) |
boolean |
addAll(java.util.Collection c) |
boolean |
addAll(int index,
java.util.Collection c) |
void |
clear() |
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection c) |
void |
finalize() |
java.lang.Object |
get(int index) |
int |
indexOf(java.lang.Object o) |
boolean |
isEmpty() |
java.util.Iterator |
iterator() |
int |
lastIndexOf(java.lang.Object o) |
java.util.ListIterator |
listIterator() |
java.util.ListIterator |
listIterator(int index) |
java.lang.Object |
remove(int index) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection c) |
boolean |
retainAll(java.util.Collection c) |
protected int |
seek(int pos)
Seek to the position of the current index.
|
java.lang.Object |
set(int index,
java.lang.Object element) |
int |
size() |
java.util.List |
subList(int fromIndex,
int toIndex) |
java.lang.Object[] |
toArray() |
java.lang.Object[] |
toArray(java.lang.Object[] a) |
protected static final int BLOCKSIZE
protected static final int BLOCKGAB
protected static final int RECSIZE
protected long size
protected java.io.File file
protected java.io.RandomAccessFile raf
protected java.nio.MappedByteBuffer mappedByteBuffer
protected java.nio.ByteBuffer buffer
protected int currentBlockOffset
protected long fSize
protected java.nio.channels.FileChannel fileChannel
public RecordList(java.io.File file) throws java.io.IOException
java.io.IOException
public void finalize() throws java.lang.Throwable
finalize
in class java.lang.Object
java.lang.Throwable
protected int seek(int pos) throws java.io.IOException
pos
- the new position.java.io.IOException
public int size()
size
in interface java.util.Collection
size
in interface java.util.List
public java.lang.Object get(int index)
get
in interface java.util.List
public boolean isEmpty()
isEmpty
in interface java.util.Collection
isEmpty
in interface java.util.List
public void clear()
clear
in interface java.util.Collection
clear
in interface java.util.List
public boolean addAll(java.util.Collection c)
addAll
in interface java.util.Collection
addAll
in interface java.util.List
public java.lang.Object remove(int index)
remove
in interface java.util.List
public void add(int index, java.lang.Object element)
add
in interface java.util.List
public int indexOf(java.lang.Object o)
indexOf
in interface java.util.List
public int lastIndexOf(java.lang.Object o)
lastIndexOf
in interface java.util.List
public boolean add(java.lang.Object o)
add
in interface java.util.Collection
add
in interface java.util.List
public boolean contains(java.lang.Object o)
contains
in interface java.util.Collection
contains
in interface java.util.List
public boolean remove(java.lang.Object o)
remove
in interface java.util.Collection
remove
in interface java.util.List
public boolean addAll(int index, java.util.Collection c)
addAll
in interface java.util.List
public boolean containsAll(java.util.Collection c)
containsAll
in interface java.util.Collection
containsAll
in interface java.util.List
public boolean removeAll(java.util.Collection c)
removeAll
in interface java.util.Collection
removeAll
in interface java.util.List
public boolean retainAll(java.util.Collection c)
retainAll
in interface java.util.Collection
retainAll
in interface java.util.List
public java.util.Iterator iterator()
iterator
in interface java.lang.Iterable
iterator
in interface java.util.Collection
iterator
in interface java.util.List
public java.util.List subList(int fromIndex, int toIndex)
subList
in interface java.util.List
public java.util.ListIterator listIterator()
listIterator
in interface java.util.List
public java.util.ListIterator listIterator(int index)
listIterator
in interface java.util.List
public java.lang.Object set(int index, java.lang.Object element)
set
in interface java.util.List
public java.lang.Object[] toArray(java.lang.Object[] a)
toArray
in interface java.util.Collection
toArray
in interface java.util.List
public java.lang.Object[] toArray()
toArray
in interface java.util.Collection
toArray
in interface java.util.List