[Java] Update auto-generated Java bindings to LDK 0.0.121
[ldk-java] / src / main / java / org / ldk / structs / Result_SendSuccessSendErrorZ.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_SendSuccessSendErrorZ extends CommonBase {
11         private Result_SendSuccessSendErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_SendSuccessSendErrorZ_free(ptr); } super.finalize();
14         }
15
16         static Result_SendSuccessSendErrorZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_SendSuccessSendErrorZ_is_ok(ptr)) {
18                         return new Result_SendSuccessSendErrorZ_OK(null, ptr);
19                 } else {
20                         return new Result_SendSuccessSendErrorZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_SendSuccessSendErrorZ_OK extends Result_SendSuccessSendErrorZ {
24                 public final SendSuccess res;
25                 private Result_SendSuccessSendErrorZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_SendSuccessSendErrorZ_get_ok(ptr);
28                         org.ldk.structs.SendSuccess res_hu_conv = org.ldk.structs.SendSuccess.constr_from_ptr(res);
29                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
30                         this.res = res_hu_conv;
31                 }
32         }
33
34         public static final class Result_SendSuccessSendErrorZ_Err extends Result_SendSuccessSendErrorZ {
35                 public final SendError err;
36                 private Result_SendSuccessSendErrorZ_Err(Object _dummy, long ptr) {
37                         super(_dummy, ptr);
38                         long err = bindings.CResult_SendSuccessSendErrorZ_get_err(ptr);
39                         org.ldk.structs.SendError err_hu_conv = org.ldk.structs.SendError.constr_from_ptr(err);
40                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
41                         this.err = err_hu_conv;
42                 }
43         }
44
45         /**
46          * Creates a new CResult_SendSuccessSendErrorZ in the success state.
47          */
48         public static Result_SendSuccessSendErrorZ ok(org.ldk.structs.SendSuccess o) {
49                 long ret = bindings.CResult_SendSuccessSendErrorZ_ok(o.ptr);
50                 Reference.reachabilityFence(o);
51                 if (ret >= 0 && ret <= 4096) { return null; }
52                 Result_SendSuccessSendErrorZ ret_hu_conv = Result_SendSuccessSendErrorZ.constr_from_ptr(ret);
53                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
54                 return ret_hu_conv;
55         }
56
57         /**
58          * Creates a new CResult_SendSuccessSendErrorZ in the error state.
59          */
60         public static Result_SendSuccessSendErrorZ err(org.ldk.structs.SendError e) {
61                 long ret = bindings.CResult_SendSuccessSendErrorZ_err(e.ptr);
62                 Reference.reachabilityFence(e);
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_SendSuccessSendErrorZ ret_hu_conv = Result_SendSuccessSendErrorZ.constr_from_ptr(ret);
65                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
66                 return ret_hu_conv;
67         }
68
69         /**
70          * Checks if the given object is currently in the success state
71          */
72         public boolean is_ok() {
73                 boolean ret = bindings.CResult_SendSuccessSendErrorZ_is_ok(this.ptr);
74                 Reference.reachabilityFence(this);
75                 return ret;
76         }
77
78 }