Update auto-generated bindings
[ldk-java] / ts / structs / Result_COption_EventZDecodeErrorZ.ts
1
2 import CommonBase from './CommonBase';
3 import * as bindings from '../bindings' // TODO: figure out location
4
5 public class Result_COption_EventZDecodeErrorZ extends CommonBase {
6         private Result_COption_EventZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
7         protected void finalize() throws Throwable {
8                 if (ptr != 0) { bindings.CResult_COption_EventZDecodeErrorZ_free(ptr); } super.finalize();
9         }
10
11         static Result_COption_EventZDecodeErrorZ constr_from_ptr(long ptr) {
12                 if (bindings.CResult_COption_EventZDecodeErrorZ_is_ok(ptr)) {
13                         return new Result_COption_EventZDecodeErrorZ_OK(null, ptr);
14                 } else {
15                         return new Result_COption_EventZDecodeErrorZ_Err(null, ptr);
16                 }
17         }
18         public static final class Result_COption_EventZDecodeErrorZ_OK extends Result_COption_EventZDecodeErrorZ {
19                 public final Option_EventZ res;
20                 private Result_COption_EventZDecodeErrorZ_OK(Object _dummy, long ptr) {
21                         super(_dummy, ptr);
22                         number res = bindings.LDKCResult_COption_EventZDecodeErrorZ_get_ok(ptr);
23                         Option_EventZ res_hu_conv = Option_EventZ.constr_from_ptr(res);
24                         res_hu_conv.ptrs_to.add(this);
25                         this.res = res_hu_conv;
26                 }
27         }
28
29         public static final class Result_COption_EventZDecodeErrorZ_Err extends Result_COption_EventZDecodeErrorZ {
30                 public final DecodeError err;
31                 private Result_COption_EventZDecodeErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         number err = bindings.LDKCResult_COption_EventZDecodeErrorZ_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_COption_EventZDecodeErrorZ constructor_ok(Option_EventZ o) {
41                 number ret = bindings.CResult_COption_EventZDecodeErrorZ_ok(o.ptr);
42                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
43                 return ret_hu_conv;
44         }
45
46         public static Result_COption_EventZDecodeErrorZ constructor_err(DecodeError e) {
47                 number ret = bindings.CResult_COption_EventZDecodeErrorZ_err(e == null ? 0 : e.ptr & ~1);
48                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
49                 return ret_hu_conv;
50         }
51
52         public boolean is_ok() {
53                 boolean ret = bindings.CResult_COption_EventZDecodeErrorZ_is_ok(this.ptr);
54                 return ret;
55         }
56
57         public number clone_ptr() {
58                 number ret = bindings.CResult_COption_EventZDecodeErrorZ_clone_ptr(this.ptr);
59                 return ret;
60         }
61
62         public Result_COption_EventZDecodeErrorZ clone() {
63                 number ret = bindings.CResult_COption_EventZDecodeErrorZ_clone(this.ptr);
64                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
65                 return ret_hu_conv;
66         }
67
68 }