org.apache.tuscany.sca.databinding.xml
Class DelegatingNamespaceContext.FastStack<T>

java.lang.Object
  extended by java.util.AbstractCollection<E>
      extended by java.util.AbstractList<E>
          extended by java.util.ArrayList<T>
              extended by org.apache.tuscany.sca.databinding.xml.DelegatingNamespaceContext.FastStack<T>
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<T>, java.util.Collection<T>, java.util.List<T>, java.util.RandomAccess
Enclosing class:
DelegatingNamespaceContext

public static class DelegatingNamespaceContext.FastStack<T>
extends java.util.ArrayList<T>

An implementation of the Stack API that is based on an ArrayList instead of a Vector, so it is not synchronized to protect against multi-threaded access. The implementation is therefore operates faster in environments where you do not need to worry about multiple thread contention.

The removal order of an ArrayStack is based on insertion order: The most recently added element is removed first. The iteration order is not the same as the removal order. The iterator returns elements from the bottom up, whereas the remove() method removes them from the top down.

Unlike Stack, ArrayStack accepts null entries.

See Also:
Serialized Form

Field Summary
 
Fields inherited from class java.util.AbstractList
modCount
 
Constructor Summary
DelegatingNamespaceContext.FastStack()
          Constructs a new empty ArrayStack.
DelegatingNamespaceContext.FastStack(int initialSize)
          Constructs a new empty ArrayStack with an initial size.
 
Method Summary
 boolean empty()
          Return true if this stack is currently empty.
 T get()
          Returns the element on the top of the stack.
 T peek()
          Returns the top item off of this stack without removing it.
 T peek(int n)
          Returns the n'th item down (zero-relative) from the top of this stack without removing it.
 T pop()
          Pops the top item off of this stack and return it.
 java.lang.Object push(T item)
          Pushes a new item onto the top of this stack.
 T remove()
          Removes the element on the top of the stack.
 int search(T object)
          Returns the top-most index for the object in the stack
 
Methods inherited from class java.util.ArrayList
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize
 
Methods inherited from class java.util.AbstractList
equals, hashCode, iterator, listIterator, listIterator, subList
 
Methods inherited from class java.util.AbstractCollection
containsAll, removeAll, retainAll, toString
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface java.util.List
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList
 

Constructor Detail

DelegatingNamespaceContext.FastStack

public DelegatingNamespaceContext.FastStack()
Constructs a new empty ArrayStack. The initial size is controlled by ArrayList and is currently 10.


DelegatingNamespaceContext.FastStack

public DelegatingNamespaceContext.FastStack(int initialSize)
Constructs a new empty ArrayStack with an initial size.

Parameters:
initialSize - the initial size to use
Throws:
java.lang.IllegalArgumentException - if the specified initial size is negative
Method Detail

empty

public boolean empty()
Return true if this stack is currently empty.

This method exists for compatibility with java.util.Stack. New users of this class should use isEmpty instead.

Returns:
true if the stack is currently empty

peek

public T peek()
       throws java.util.EmptyStackException
Returns the top item off of this stack without removing it.

Returns:
the top item on the stack
Throws:
java.util.EmptyStackException - if the stack is empty

peek

public T peek(int n)
       throws java.util.EmptyStackException
Returns the n'th item down (zero-relative) from the top of this stack without removing it.

Parameters:
n - the number of items down to go
Returns:
the n'th item on the stack, zero relative
Throws:
java.util.EmptyStackException - if there are not enough items on the stack to satisfy this request

pop

public T pop()
      throws java.util.EmptyStackException
Pops the top item off of this stack and return it.

Returns:
the top item on the stack
Throws:
java.util.EmptyStackException - if the stack is empty

push

public java.lang.Object push(T item)
Pushes a new item onto the top of this stack. The pushed item is also returned. This is equivalent to calling add.

Parameters:
item - the item to be added
Returns:
the item just pushed

search

public int search(T object)
Returns the top-most index for the object in the stack

Parameters:
object - the object to be searched for
Returns:
top-most index, or -1 if not found

get

public T get()
Returns the element on the top of the stack.

Returns:
the element on the top of the stack
Throws:
java.util.EmptyStackException - if the stack is empty

remove

public T remove()
Removes the element on the top of the stack.

Returns:
the removed element
Throws:
java.util.EmptyStackException - if the stack is empty