List of usage examples for java.util PrimitiveIterator.OfInt hasNext
boolean hasNext();
From source file:Main.java
public static void main(String[] args) { IntStream i = IntStream.of(1, 2, 3, 4, 5, 6, 7); PrimitiveIterator.OfInt o = i.iterator(); while (o.hasNext()) { System.out.println(o.nextInt()); }/*from w w w. ja v a 2s .c om*/ }