28bba160e3c415f2bf8fd8c21ab30381ecb17db1
[ldk-java] / ts / structs / Result_ChannelMonitorUpdateDecodeErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_ChannelMonitorUpdateDecodeErrorZ extends CommonBase {
6         private Result_ChannelMonitorUpdateDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_ChannelMonitorUpdateDecodeErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_ChannelMonitorUpdateDecodeErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_ChannelMonitorUpdateDecodeErrorZ_result_ok(ptr)) {
13                         return new Result_ChannelMonitorUpdateDecodeErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_ChannelMonitorUpdateDecodeErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_ChannelMonitorUpdateDecodeErrorZ_OK extends Result_ChannelMonitorUpdateDecodeErrorZ {
19                 public final ChannelMonitorUpdate res;
20                 private Result_ChannelMonitorUpdateDecodeErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_ChannelMonitorUpdateDecodeErrorZ_get_ok(ptr);
23                         const res_hu_conv: ChannelMonitorUpdate = new ChannelMonitorUpdate(null, res);
24                         res_hu_conv.ptrs_to.add(this);
25                         this.res = res_hu_conv;
26                 }
27                 public Result_ChannelMonitorUpdateDecodeErrorZ_OK(ChannelMonitorUpdate res) {
28                         this(null, bindings.CResult_ChannelMonitorUpdateDecodeErrorZ_ok(res == null ? 0 : res.ptr & ~1));
29                         this.ptrs_to.add(res);
30                 }
31         }
32
33         public static final class Result_ChannelMonitorUpdateDecodeErrorZ_Err extends Result_ChannelMonitorUpdateDecodeErrorZ {
34                 public final DecodeError err;
35                 private Result_ChannelMonitorUpdateDecodeErrorZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                         number err = bindings.LDKCResult_ChannelMonitorUpdateDecodeErrorZ_get_err(ptr);
38                         const err_hu_conv: DecodeError = new DecodeError(null, err);
39                         err_hu_conv.ptrs_to.add(this);
40                         this.err = err_hu_conv;
41                 }
42                 public Result_ChannelMonitorUpdateDecodeErrorZ_Err(DecodeError err) {
43                         this(null, bindings.CResult_ChannelMonitorUpdateDecodeErrorZ_err(err == null ? 0 : err.ptr & ~1));
44                         this.ptrs_to.add(err);
45                 }
46         }
47 }