Name | Signature and Synopsis |
---|---|
clear | void clear(Object stackObject) Clear the contents of the stack. |
create | Object create(String stackID) Creates a new Stack structure or returns one if exists. |
isEmpty | boolean isEmpty(Object stackObject) Check whether this stack is empty or not. |
peek | Object peek(Object stackObject) Returns the top element in the stack |
push | Object push(Object stackObject, Object value) Pushes an element to the top of the stack. |
toArray | Object toArray(Object stackObject, String arrayClassType, String classloaderClass) Returns an array containing all of the elements in this Stack. |
toArrayList | Object toArrayList(Object stackObject) Returns an ArrayList containing all of the elements in this Stack. |