Save This Page
Home » Xerces-J-src.2.9.1 » org.apache.xerces » util » [javadoc | source]
org.apache.xerces.util
public final class: IntStack [javadoc | source]
java.lang.Object
   org.apache.xerces.util.IntStack
A simple integer based stack. moved to org.apache.xerces.util by neilg to support the XPathMatcher.
Method from org.apache.xerces.util.IntStack Summary:
clear,   elementAt,   peek,   pop,   print,   push,   size
Methods from java.lang.Object:
equals,   getClass,   hashCode,   notify,   notifyAll,   toString,   wait,   wait,   wait
Method from org.apache.xerces.util.IntStack Detail:
 public  void clear() 
    Clears the stack.
 public int elementAt(int depth) 
    Returns the element at the specified depth in the stack.
 public int peek() 
    Peeks at the top of the stack.
 public int pop() 
    Pops a value off of the stack.
 public  void print() 
    Prints the stack.
 public  void push(int value) 
    Pushes a value onto the stack.
 public int size() 
    Returns the size of the stack.