|
Enhydra 3.1 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--org.apache.xalan.xpath.xml.IntVector
A very simple table that stores a list of int.
Field Summary | |
protected int |
m_firstFree
|
int[] |
m_map
|
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 |
clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
toString,
wait,
wait,
wait |
Field Detail |
public int[] m_map
protected int m_firstFree
Constructor Detail |
public IntVector()
public IntVector(int blocksize)
Method Detail |
public final int size()
public final void addElement(int value)
public final void insertElementAt(int value, int at)
public final void removeAllElements()
public final boolean removeElement(int s)
public final void removeElementAt(int i)
public final void setElementAt(int node, int index)
public final int elementAt(int i)
public final boolean contains(int s)
public final int indexOf(int elem, int index)
public final int indexOf(int elem)
public final int lastIndexOf(int elem)
|
Enhydra 3.1 API | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |