java.lang
Interface Iterable<E>

Type Parameters:
E - type of the elements
All Known Subinterfaces:
Collection<E>, List<E>, Set<E>
All Known Implementing Classes:
ArrayList, HashSet, InBox, IterableEnumeration, LinkedList, Path, RangeReadings, VM.VMClasses, VM.VMConstants, VM.VMElements, VM.VMExceptions, VM.VMFields, VM.VMItems, VM.VMMethods, VM.VMStackFrames, VM.VMStaticFields, VM.VMThreads

public interface Iterable<E>

Interface needed by Java foreach loops. It just provides an Iterator.

Author:
Sven Köhler

Method Summary
 Iterator<E> iterator()
           
 

Method Detail

iterator

Iterator<E> iterator()