org.egothor.util
Class IntegerLIFOStack

java.lang.Object
  extended by org.egothor.util.IntegerLIFOStack

public final class IntegerLIFOStack
extends java.lang.Object

Integer values in FILO stack.

Author:
galambos

Constructor Summary
IntegerLIFOStack(int capacity)
          Creates a new instance of IntegerStack
 
Method Summary
 boolean isEmpty()
           
 int pop()
           
 void push(int value)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntegerLIFOStack

public IntegerLIFOStack(int capacity)
Creates a new instance of IntegerStack

Method Detail

push

public void push(int value)

isEmpty

public boolean isEmpty()

pop

public int pop()