| java.lang.Object org.apache.xml.utils.ObjectVector
All known Subclasses: org.apache.xml.utils.ObjectStack,
ObjectVector | public class ObjectVector implements Cloneable(Code) | | A very simple table that stores a list of objects.
This version is based on a "realloc" strategy -- a simle array is
used, and when more storage is needed, a larger array is obtained
and all existing data is recopied into it. As a result, read/write
access to existing nodes is O(1) fast but appending may be O(N**2)
slow.
|
Method Summary | |
final public void | addElement(Object value) Append an object onto the vector. | final public void | addElements(Object value, int numberOfElements) Append several Object values onto the vector. | final public void | addElements(int numberOfElements) Append several slots onto the vector, but do not set the values. | public Object | clone() | final public boolean | contains(Object s) Tell if the table contains the given Object. | final public Object | elementAt(int i) Get the nth element. | final public int | indexOf(Object 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. | final public int | indexOf(Object elem) Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method. | final public void | insertElementAt(Object value, int at) Inserts the specified object in this vector at the specified index. | final public int | lastIndexOf(Object elem) Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method. | final public void | removeAllElements() Remove all elements objects from the list. | final public boolean | removeElement(Object s) Removes the first occurrence of the argument from this vector. | final public void | removeElementAt(int i) Deletes the component at the specified index. | final public void | setElementAt(Object value, int index) Sets the component at the specified index of this vector to be the
specified object. | final public void | setSize(int sz) Get the length of the list. | final public void | setToSize(int size) | final public int | size() Get the length of the list. |
m_blocksize | protected int m_blocksize(Code) | | Size of blocks to allocate
|
m_firstFree | protected int m_firstFree(Code) | | Number of ints in array
|
m_mapSize | protected int m_mapSize(Code) | | Size of array
|
ObjectVector | public ObjectVector()(Code) | | Default constructor. Note that the default
block size is very small, for small lists.
|
ObjectVector | public ObjectVector(int blocksize)(Code) | | Construct a IntVector, using the given block size.
Parameters: blocksize - Size of block to allocate |
ObjectVector | public ObjectVector(int blocksize, int increaseSize)(Code) | | Construct a IntVector, using the given block size.
Parameters: blocksize - Size of block to allocate |
ObjectVector | public ObjectVector(ObjectVector v)(Code) | | Copy constructor for ObjectVector
Parameters: v - Existing ObjectVector to copy |
addElement | final public void addElement(Object value)(Code) | | Append an object onto the vector.
Parameters: value - Object to add to the list |
addElements | final public void addElements(Object value, int numberOfElements)(Code) | | Append several Object values onto the vector.
Parameters: value - Object to add to the list |
addElements | final public void addElements(int numberOfElements)(Code) | | Append several slots onto the vector, but do not set the values.
Parameters: numberOfElements - number of slots to append |
contains | final public boolean contains(Object s)(Code) | | Tell if the table contains the given Object.
Parameters: s - object to look for true if the object is in the list |
elementAt | final public Object elementAt(int i)(Code) | | Get the nth element.
Parameters: i - index of object to get object at given index |
indexOf | final public int indexOf(Object elem, int index)(Code) | | Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method.
Parameters: elem - object to look for Parameters: index - Index of where to begin search the index of the first occurrence of the objectargument in this vector at position index or later in thevector; returns -1 if the object is not found. |
indexOf | final public int indexOf(Object elem)(Code) | | Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method.
Parameters: elem - object to look for the index of the first occurrence of the objectargument in this vector at position index or later in thevector; returns -1 if the object is not found. |
insertElementAt | final public void insertElementAt(Object value, int at)(Code) | | Inserts the specified object in this vector at the specified index.
Each component in this vector with an index greater or equal to
the specified index is shifted upward to have an index one greater
than the value it had previously.
Parameters: value - Object to insert Parameters: at - Index of where to insert |
lastIndexOf | final public int lastIndexOf(Object elem)(Code) | | Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method.
Parameters: elem - Object to look for the index of the first occurrence of the objectargument in this vector at position index or later in thevector; returns -1 if the object is not found. |
removeAllElements | final public void removeAllElements()(Code) | | Remove all elements objects from the list.
|
removeElement | final public boolean removeElement(Object s)(Code) | | Removes the first occurrence of the argument from this vector.
If the object is found in this vector, each component in the vector
with an index greater or equal to the object's index is shifted
downward to have an index one smaller than the value it had
previously.
Parameters: s - Object to remove from array True if the object was removed, false if it was not found |
removeElementAt | final public void removeElementAt(int i)(Code) | | Deletes the component at the specified index. Each component in
this vector with an index greater or equal to the specified
index is shifted downward to have an index one smaller than
the value it had previously.
Parameters: i - index of where to remove an object |
setElementAt | final public void setElementAt(Object value, int index)(Code) | | Sets the component at the specified index of this vector to be the
specified object. The previous component at that position is discarded.
The index must be a value greater than or equal to 0 and less
than the current size of the vector.
Parameters: value - object to set Parameters: index - Index of where to set the object |
setSize | final public void setSize(int sz)(Code) | | Get the length of the list.
length of the list |
setToSize | final public void setToSize(int size)(Code) | | |
size | final public int size()(Code) | | Get the length of the list.
length of the list |
|
|