Class Stack<E>

All Implemented Interfaces:
Serializable, Cloneable, Iterable<E>, Collection<E>, Deque<E>, List<E>, Queue<E>

public class Stack<E> extends LinkedList<E>
Simple implementation of Stack data structure. The Stack is not thread safe and intended for single thread usage
Since:
7.1
Author:
anna
See Also:
  • Constructor Details

    • Stack

      public Stack()
      Creates an empty Stack.
  • Method Details