org.apache.xml.utils
public class IntVector extends Object implements Cloneable
UNKNOWN: internal
Constructor Summary | |
---|---|
IntVector()
Default constructor. | |
IntVector(int blocksize)
Construct a IntVector, using the given block size.
| |
IntVector(int blocksize, int increaseSize)
Construct a IntVector, using the given block size.
| |
IntVector(IntVector v)
Copy constructor for IntVector
|
Method Summary | |
---|---|
void | addElement(int value)
Append a int onto the vector.
|
void | addElements(int value, int numberOfElements)
Append several int values onto the vector.
|
void | addElements(int numberOfElements)
Append several slots onto the vector, but do not set the values.
|
Object | clone()
Returns clone of current IntVector
|
boolean | contains(int s)
Tell if the table contains the given node.
|
int | elementAt(int i)
Get the nth element.
|
int | indexOf(int 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.
|
int | indexOf(int elem)
Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method.
|
void | insertElementAt(int value, int at)
Inserts the specified node in this vector at the specified index.
|
int | lastIndexOf(int elem)
Searches for the first occurence of the given argument,
beginning the search at index, and testing for equality
using the equals method.
|
void | removeAllElements()
Inserts the specified node in this vector at the specified index.
|
boolean | removeElement(int s)
Removes the first occurrence of the argument from this vector.
|
void | removeElementAt(int i)
Deletes the component at the specified index. |
void | setElementAt(int value, int index)
Sets the component at the specified index of this vector to be the
specified object. |
void | setSize(int sz)
Get the length of the list.
|
int | size()
Get the length of the list.
|
Parameters: blocksize Size of block to allocate
Parameters: blocksize Size of block to allocate
Parameters: v Existing IntVector to copy
Parameters: value Int to add to the list
Parameters: value Int to add to the list
Parameters: numberOfElements Int to add to the list
Returns: clone of current IntVector
Parameters: s object to look for
Returns: true if the object is in the list
Parameters: i index of object to get
Returns: object at given index
Parameters: elem object to look for index Index of where to begin search
Returns: the index of the first occurrence of the object argument in this vector at position index or later in the vector; returns -1 if the object is not found.
Parameters: elem object to look for
Returns: the index of the first occurrence of the object argument in this vector at position index or later in the vector; returns -1 if the object is not found.
Parameters: value Int to insert at Index of where to insert
Parameters: elem Object to look for
Returns: the index of the first occurrence of the object argument in this vector at position index or later in the vector; returns -1 if the object is not found.
Parameters: s Int to remove from array
Returns: True if the int was removed, false if it was not found
Parameters: i index of where to remove and int
Parameters: value object to set index Index of where to set the object
Returns: length of the list
Returns: length of the list