Method Summary |
|
public void | RemoveAllNoClear() Set the length to zero, but don't clear the array. |
public void | addElement(int value) Append a Node onto the vector. |
public void | appendNodes(NodeVector nodes) Append the nodes to the list. |
public Object | clone() Get a cloned LocPathIterator. |
public boolean | contains(int s) Tell if the table contains the given node. |
public int | elementAt(int i) Get the nth element. |
public 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. |
public 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. |
public void | insertElementAt(int value, int at) Inserts the specified node in this vector at the specified index. |
public void | insertInOrder(int value) Insert a node in order in the list. |
final public int | peepOrNull() Return the node at the top of the stack without popping the stack. |
final public int | peepTail() Return the node at the tail of the vector without popping
Special purpose method for TransformerImpl, pushElemTemplateElement. |
final public int | peepTailSub1() Return the node one position from the tail without popping. |
final public int | pop() Pop a node from the tail of the vector and return the result. |
final public int | popAndTop() Pop a node from the tail of the vector and return the
top of the stack after the pop. |
final public void | popPair() Pop a pair of nodes from the tail of the stack. |
final public void | popQuick() Pop a node from the tail of the vector. |
final public void | push(int value) Append a Node onto the vector. |
final public void | pushPair(int v1, int v2) Push a pair of nodes into the stack. |
public void | removeAllElements() Inserts the specified node in this vector at the specified index. |
public boolean | removeElement(int s) Removes the first occurrence of the argument from this vector. |
public void | removeElementAt(int i) Deletes the component at the specified index. |
public void | setElementAt(int node, int index) Sets the component at the specified index of this vector to be the
specified object. |
final public void | setTail(int n) Set the tail of the stack to the given node. |
final public void | setTailSub1(int n) Set the given node one position from the tail. |
public int | size() Get the length of the list. |
public void | sort(int a, int lo0, int hi0) Sort an array using a quicksort algorithm. |
public void | sort() Sort an array using a quicksort algorithm. |