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