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