goog.module('foreachstatement.StringIterable$impl');

const Iterable = goog.require('java.lang.Iterable$impl');
const $Util = goog.require('nativebootstrap.Util$impl');

let StringIterator = goog.forwardDeclare('foreachstatement.StringIterator$impl');

/**
 * @interface
 * @extends {Iterable<?string>}
 */
class StringIterable {
 /** @abstract @nodts @return {!StringIterator} */
 m_iterator__foreachstatement_StringIterator() {}
 /** @nodts */
 static $clinit() {
  StringIterable.$clinit = () =>{};
  StringIterable.$loadModules();
  Iterable.$clinit();
 }
 
 static $markImplementor(/** Function */ ctor) {
  Iterable.$markImplementor(ctor);
  ctor.prototype.$implements__foreachstatement_StringIterable = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__foreachstatement_StringIterable;
 }
 
 /** @nodts */
 static $loadModules() {}
}
StringIterable.$markImplementor(/**@type {Function}*/ (StringIterable));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (StringIterable), 'foreachstatement.StringIterable');

exports = StringIterable;

//# sourceMappingURL=StringIterable.js.map
