com.intel.langutil
Interface Iterator<E>
-
public interface Iterator<E>
This class provides an interface for containers iteration.
-
-
Method Detail
-
hasNext
boolean hasNext()
Returns whether the container has more elements- Returns:
- returns whether the container has more elements
-
getNext
E getNext()
Returns the next element in the container- Returns:
- returns the next element in the container
-
-