public interface IDynamicStack<E>
Known subtypesMutableStack
Same functionality of a regular java.util stack. Object
return order does not matter.
Methods
public abstract E pop() | Pops an item off the stack |
public abstract void push(E argObject) | Pushes an item back on the stack |
Method details
pop
public abstract E pop()Pops an item off the stack
push
public abstract void push(E argObject)Pushes an item back on the stack