|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xml.utils.SuballocatedByteVector
A very simple table that stores a list of byte. Very similar API to our IntVector class (same API); different internal storage. This version uses an array-of-arrays solution. Read/write access is thus a bit slower than the simple IntVector, and basic storage is a trifle higher due to the top-level array -- but appending is O(1) fast rather than O(N**2) slow, which will swamp those costs in situations where long vectors are being built up. Known issues: Some methods are private because they haven't yet been tested properly. If an element has not been set (because we skipped it), its value will initially be 0. Shortening the vector does not clear old storage; if you then skip values and setElementAt a higher index again, you may see old data reappear in the truncated-and-restored section. Doing anything else would have performance costs.
Constructor Summary | |
SuballocatedByteVector()
Default constructor. |
|
SuballocatedByteVector(int blocksize)
Construct a ByteVector, using the given block size. |
|
SuballocatedByteVector(int blocksize,
int increaseSize)
Construct a ByteVector, using the given block size. |
Method Summary | |
void |
addElement(byte value)
Append a byte onto the vector. |
byte |
elementAt(int i)
Get the nth element. |
int |
indexOf(byte elem)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
int |
indexOf(byte elem,
int index)
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method. |
void |
removeAllElements()
Wipe it out. |
void |
setElementAt(byte value,
int at)
Sets the component at the specified index of this vector to be the specified object. |
int |
size()
Get the length of the list. |
Methods inherited from class java.lang.Object |
equals,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Constructor Detail |
public SuballocatedByteVector()
public SuballocatedByteVector(int blocksize)
blocksize
- Size of block to allocatepublic SuballocatedByteVector(int blocksize, int increaseSize)
blocksize
- Size of block to allocateMethod Detail |
public int size()
public void addElement(byte value)
value
- Byte to add to the listpublic void removeAllElements()
public void setElementAt(byte value, int at)
value
- at
- Index of where to set the objectpublic byte elementAt(int i)
i
- index of value to getpublic int indexOf(byte elem, int index)
elem
- object to look forindex
- Index of where to begin searchpublic int indexOf(byte elem)
elem
- object to look for
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |