org.jbox2d.pooling
Interface IDynamicStack<E>

Type Parameters:
E -
All Known Implementing Classes:
MutableStack

public interface IDynamicStack<E>

Same functionality of a regular java.util stack. Object return order does not matter.

Author:
Daniel

Method Summary
 E pop()
          Pops an item off the stack
 void push(E argObject)
          Pushes an item back on the stack
 

Method Detail

pop

E pop()
Pops an item off the stack

Returns:

push

void push(E argObject)
Pushes an item back on the stack

Parameters:
argObject -


Copyright © 2013. All Rights Reserved.