[C#] Update test to LDK 0.0.123 and pay a BOLT12 offer
[ldk-java] / src / main / java / org / ldk / structs / Result_COption_EventZDecodeErrorZ.java
1 package org.ldk.structs;
2
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
5 import org.ldk.util.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
9
10 public class Result_COption_EventZDecodeErrorZ extends CommonBase {
11         private Result_COption_EventZDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_COption_EventZDecodeErrorZ_free(ptr); } super.finalize();
14         }
15
16         protected void force_free() {
17                 if (ptr != 0) { bindings.CResult_COption_EventZDecodeErrorZ_free(ptr); ptr = 0; }
18         }
19
20         static Result_COption_EventZDecodeErrorZ constr_from_ptr(long ptr) {
21                 if (bindings.CResult_COption_EventZDecodeErrorZ_is_ok(ptr)) {
22                         return new Result_COption_EventZDecodeErrorZ_OK(null, ptr);
23                 } else {
24                         return new Result_COption_EventZDecodeErrorZ_Err(null, ptr);
25                 }
26         }
27         public static final class Result_COption_EventZDecodeErrorZ_OK extends Result_COption_EventZDecodeErrorZ {
28                 public final Option_EventZ res;
29                 private Result_COption_EventZDecodeErrorZ_OK(Object _dummy, long ptr) {
30                         super(_dummy, ptr);
31                         long res = bindings.CResult_COption_EventZDecodeErrorZ_get_ok(ptr);
32                         org.ldk.structs.Option_EventZ res_hu_conv = org.ldk.structs.Option_EventZ.constr_from_ptr(res);
33                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
34                         this.res = res_hu_conv;
35                 }
36         }
37
38         public static final class Result_COption_EventZDecodeErrorZ_Err extends Result_COption_EventZDecodeErrorZ {
39                 public final DecodeError err;
40                 private Result_COption_EventZDecodeErrorZ_Err(Object _dummy, long ptr) {
41                         super(_dummy, ptr);
42                         long err = bindings.CResult_COption_EventZDecodeErrorZ_get_err(ptr);
43                         org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
44                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
45                         this.err = err_hu_conv;
46                 }
47         }
48
49         /**
50          * Creates a new CResult_COption_EventZDecodeErrorZ in the success state.
51          */
52         public static Result_COption_EventZDecodeErrorZ ok(org.ldk.structs.Option_EventZ o) {
53                 long ret = bindings.CResult_COption_EventZDecodeErrorZ_ok(o.ptr);
54                 Reference.reachabilityFence(o);
55                 if (ret >= 0 && ret <= 4096) { return null; }
56                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
57                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
58                 return ret_hu_conv;
59         }
60
61         /**
62          * Creates a new CResult_COption_EventZDecodeErrorZ in the error state.
63          */
64         public static Result_COption_EventZDecodeErrorZ err(org.ldk.structs.DecodeError e) {
65                 long ret = bindings.CResult_COption_EventZDecodeErrorZ_err(e.ptr);
66                 Reference.reachabilityFence(e);
67                 if (ret >= 0 && ret <= 4096) { return null; }
68                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
69                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
70                 return ret_hu_conv;
71         }
72
73         /**
74          * Checks if the given object is currently in the success state
75          */
76         public boolean is_ok() {
77                 boolean ret = bindings.CResult_COption_EventZDecodeErrorZ_is_ok(this.ptr);
78                 Reference.reachabilityFence(this);
79                 return ret;
80         }
81
82         long clone_ptr() {
83                 long ret = bindings.CResult_COption_EventZDecodeErrorZ_clone_ptr(this.ptr);
84                 Reference.reachabilityFence(this);
85                 return ret;
86         }
87
88         /**
89          * Creates a new CResult_COption_EventZDecodeErrorZ which has the same data as `orig`
90          * but with all dynamically-allocated buffers duplicated in new buffers.
91          */
92         public Result_COption_EventZDecodeErrorZ clone() {
93                 long ret = bindings.CResult_COption_EventZDecodeErrorZ_clone(this.ptr);
94                 Reference.reachabilityFence(this);
95                 if (ret >= 0 && ret <= 4096) { return null; }
96                 Result_COption_EventZDecodeErrorZ ret_hu_conv = Result_COption_EventZDecodeErrorZ.constr_from_ptr(ret);
97                 return ret_hu_conv;
98         }
99
100 }