goog.module('typewildcards.TypeWildCards.IntegerSupplier$impl');

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

let Integer = goog.forwardDeclare('java.lang.Integer$impl');

/**
 * @interface
 */
class IntegerSupplier {
 /** @abstract @nodts @return {Integer} */
 m_get__java_lang_Integer() {}
 /** @nodts */
 static $clinit() {
  IntegerSupplier.$clinit = () =>{};
  IntegerSupplier.$loadModules();
 }
 
 static $markImplementor(/** Function */ ctor) {
  ctor.prototype.$implements__typewildcards_TypeWildCards_IntegerSupplier = true;
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance != null && !!instance.$implements__typewildcards_TypeWildCards_IntegerSupplier;
 }
 
 /** @nodts */
 static $loadModules() {}
}
IntegerSupplier.$markImplementor(/**@type {Function}*/ (IntegerSupplier));
$Util.$setClassMetadataForInterface(/**@type {Function}*/ (IntegerSupplier), 'typewildcards.TypeWildCards$IntegerSupplier');

exports = IntegerSupplier;

//# sourceMappingURL=TypeWildCards$IntegerSupplier.js.map
