org.egothor.util
Class IntegerFIFOStack

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

public class IntegerFIFOStack
extends java.lang.Object

IntegerFIFOStack.java

Author:
galambos

Constructor Summary
IntegerFIFOStack(int capacity)
           
 
Method Summary
 int[] array()
           
 void clear()
           
 boolean isEmpty()
           
 int pop()
           
 int pop(int[] prox, int offset, int len)
           
 void push(int value)
           
 int size()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

IntegerFIFOStack

public IntegerFIFOStack(int capacity)
Method Detail

push

public void push(int value)

clear

public void clear()

size

public int size()

isEmpty

public boolean isEmpty()

pop

public int pop()

pop

public int pop(int[] prox,
               int offset,
               int len)

array

public int[] array()