/**@class java.lang.Iterable
 Instances of classes that implement this interface can be used with
 the enhanced for loop.

 @since 1.5
*/
var Iterable = {

/**Returns an {@link Iterator} for the elements in this object.
@return {Object {java.util.Iterator}} An {@code Iterator} instance.
*/
iterator : function(  ) {},


};