1: package java.lang; 2: public interface Iterable<T> 3: { 4: /** @return An iterator for a collection of objects of type T. */ 5: Iterator<T> iterator(); 6: } // end Iterable