java.lang
Interface Iterable<E>

Type Parameters:
E - type of the elements
All Known Subinterfaces:
Collection<E>, List<E>
All Known Implementing Classes:
ArrayList, MapPathFinder, RangeReadings, SimplePathFinder, 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()