Cómo iterar una pila sin clase de iterador

for(YourObject obj : stack)
{
    System.out.println(obj);
}
Vishal