goog.module('typewildcards.GenericType$impl');

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

/**
 * @template T
 */
class GenericType extends j_l_Object {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @template T @return {!GenericType<T>} */
 static $create__() {
  GenericType.$clinit();
  let $instance = new GenericType();
  $instance.$ctor__typewildcards_GenericType__void();
  return $instance;
 }
 /** @nodts */
 $ctor__typewildcards_GenericType__void() {
  this.$ctor__java_lang_Object__void();
 }
 /** @nodts @return {T} */
 m_get__java_lang_Object_$pp_typewildcards() {
  return null;
 }
 /** @nodts */
 static $clinit() {
  GenericType.$clinit = () =>{};
  GenericType.$loadModules();
  j_l_Object.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof GenericType;
 }
 
 /** @nodts */
 static $loadModules() {}
}
$Util.$setClassMetadata(GenericType, 'typewildcards.GenericType');

exports = GenericType;

//# sourceMappingURL=GenericType.js.map
