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

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

let $Long = goog.forwardDeclare('nativebootstrap.Long$impl');

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

exports = LongValueHolder;

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