goog.module('cast.CastPrimitives.IntValueHolder$impl');

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

class IntValueHolder extends j_l_Object {
 /** @protected @nodts */
 constructor() {
  super();
 }
 /** @nodts @return {!IntValueHolder} */
 static $create__int(/** number */ value) {
  IntValueHolder.$clinit();
  let $instance = new IntValueHolder();
  $instance.$ctor__cast_CastPrimitives_IntValueHolder__int__void(value);
  return $instance;
 }
 /** @nodts */
 $ctor__cast_CastPrimitives_IntValueHolder__int__void(/** number */ value) {
  this.$ctor__java_lang_Object__void();
 }
 /** @nodts */
 static $clinit() {
  IntValueHolder.$clinit = () =>{};
  IntValueHolder.$loadModules();
  j_l_Object.$clinit();
 }
 /** @nodts @return {boolean} */
 static $isInstance(/** ? */ instance) {
  return instance instanceof IntValueHolder;
 }
 
 /** @nodts */
 static $loadModules() {}
}
$Util.$setClassMetadata(IntValueHolder, 'cast.CastPrimitives$IntValueHolder');

exports = IntValueHolder;

//# sourceMappingURL=CastPrimitives$IntValueHolder.js.map
