When I debugged my code I found that the hasNext() method of Iterator returned true, but the next() method threw NoSuchElementException.
Below is my code:
Collection<TradeStock> restBuy=em.createQuery("select t from TradeStock ...t.getResultList();
if(!restBuy.isEmpty())
{
Iterator itrest=restBuy.iterator();
while(itrest.hasNext())
{
TradeStock ts=(TradeStock)itrest.next();
x+=ts.getTradeExecutedQuantity();
}
}
What am I getting wrong?
isEmptycheck there; if it's empty thewhileloop just wouldn't be entered – Јοеу Jun 11 '12 at 5:17Iterator<TradeStock>, you won't need to do the casting. – Raze2dust Jun 11 '12 at 5:18