Jak iterować stos bez klasy iteratora

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