Update auto-generated bindings
[ldk-java] / ts / structs / Result_NetworkGraphDecodeErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_NetworkGraphDecodeErrorZ extends CommonBase {
6         private Result_NetworkGraphDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_NetworkGraphDecodeErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_NetworkGraphDecodeErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.LDKCResult_NetworkGraphDecodeErrorZ_result_ok(ptr)) {
13                         return new Result_NetworkGraphDecodeErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_NetworkGraphDecodeErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_NetworkGraphDecodeErrorZ_OK extends Result_NetworkGraphDecodeErrorZ {
19                 public final NetworkGraph res;
20                 private Result_NetworkGraphDecodeErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_NetworkGraphDecodeErrorZ_get_ok(ptr);
23                         const res_hu_conv: NetworkGraph = new NetworkGraph(null, res);
24                         res_hu_conv.ptrs_to.add(this);
25                         this.res = res_hu_conv;
26                 }
27         }
28
29         public static final class Result_NetworkGraphDecodeErrorZ_Err extends Result_NetworkGraphDecodeErrorZ {
30                 public final DecodeError err;
31                 private Result_NetworkGraphDecodeErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         number err = bindings.LDKCResult_NetworkGraphDecodeErrorZ_get_err(ptr);
34                         const err_hu_conv: DecodeError = new DecodeError(null, err);
35                         err_hu_conv.ptrs_to.add(this);
36                         this.err = err_hu_conv;
37                 }
38         }
39
40         public static Result_NetworkGraphDecodeErrorZ constructor__ok(NetworkGraph o) {
41                 number ret = bindings.CResult_NetworkGraphDecodeErrorZ_ok(o == null ? 0 : o.ptr & ~1);
42                 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
43                 ret_hu_conv.ptrs_to.add(o);
44                 return ret_hu_conv;
45         }
46
47         public static Result_NetworkGraphDecodeErrorZ constructor__err(DecodeError e) {
48                 number ret = bindings.CResult_NetworkGraphDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
49                 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
50                 ret_hu_conv.ptrs_to.add(e);
51                 return ret_hu_conv;
52         }
53
54         public Result_NetworkGraphDecodeErrorZ _clone() {
55                 number ret = bindings.CResult_NetworkGraphDecodeErrorZ_clone(this.ptr);
56                 Result_NetworkGraphDecodeErrorZ ret_hu_conv = Result_NetworkGraphDecodeErrorZ.constr_from_ptr(ret);
57                 return ret_hu_conv;
58         }
59
60 }