|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xml.utils.IntVector
**For internal use only** A very simple table that stores a list of int.
Field Summary | |
int[] |
m_map
Array of ints |
Constructor Summary | |
IntVector()
Default constructor. |
|
IntVector(int blocksize)
Construct a IntVector, using the given block size. |
Method Summary | |
void |
addElement(int value)
Append a int onto the vector. |
boolean |
contains(int s)
Tell if the table contains the given node. |
int |
elementAt(int i)
Get the nth element. |
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. |
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. |
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 node,
int index)
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 |
Field Detail |
public int[] m_map
Constructor Detail |
public IntVector()
public IntVector(int blocksize)
blocksize
- Size of block to allocateMethod Detail |
public final int size()
public final void addElement(int value)
value
- Int to add to the listpublic final void insertElementAt(int value, int at)
value
- Int to insertat
- Index of where to insertpublic final void removeAllElements()
public final boolean removeElement(int s)
s
- Int to remove from arraypublic final void removeElementAt(int i)
i
- index of where to remove and intpublic final void setElementAt(int node, int index)
node
- object to setindex
- Index of where to set the objectpublic final int elementAt(int i)
i
- index of object to getpublic final boolean contains(int s)
s
- object to look forpublic final int indexOf(int elem, int index)
elem
- object to look forindex
- Index of where to begin searchpublic final int indexOf(int elem)
elem
- object to look forpublic final int lastIndexOf(int elem)
elem
- Object to look for
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |