org.cheffo.jeplite.util
Class DoubleStack

java.lang.Object
  |
  +--org.cheffo.jeplite.util.DoubleStack

public class DoubleStack
extends java.lang.Object


Field Summary
static int instances
           
 
Constructor Summary
DoubleStack()
           
DoubleStack(int stackDepth)
           
 
Method Summary
 double elementAt(int index)
           
 boolean isEmpty()
           
 double peek()
           
 double pop()
           
 void push(double what)
           
 void removeAllElements()
           
 int size()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

instances

public static int instances
Constructor Detail

DoubleStack

public DoubleStack()

DoubleStack

public DoubleStack(int stackDepth)
Method Detail

peek

public final double peek()

pop

public final double pop()

push

public final void push(double what)

isEmpty

public final boolean isEmpty()

size

public final int size()

elementAt

public final double elementAt(int index)

removeAllElements

public final void removeAllElements()