Drop old manual implementations of the `Tx{In,Out}` getters
[ldk-java] / src / main / java / org / ldk / structs / Result_NonePaymentErrorZ.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_NonePaymentErrorZ extends CommonBase {
11         private Result_NonePaymentErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_NonePaymentErrorZ_free(ptr); } super.finalize();
14         }
15
16         static Result_NonePaymentErrorZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_NonePaymentErrorZ_is_ok(ptr)) {
18                         return new Result_NonePaymentErrorZ_OK(null, ptr);
19                 } else {
20                         return new Result_NonePaymentErrorZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_NonePaymentErrorZ_OK extends Result_NonePaymentErrorZ {
24                 private Result_NonePaymentErrorZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                 }
27         }
28
29         public static final class Result_NonePaymentErrorZ_Err extends Result_NonePaymentErrorZ {
30                 public final PaymentError err;
31                 private Result_NonePaymentErrorZ_Err(Object _dummy, long ptr) {
32                         super(_dummy, ptr);
33                         long err = bindings.CResult_NonePaymentErrorZ_get_err(ptr);
34                         org.ldk.structs.PaymentError err_hu_conv = org.ldk.structs.PaymentError.constr_from_ptr(err);
35                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
36                         this.err = err_hu_conv;
37                 }
38         }
39
40         /**
41          * Creates a new CResult_NonePaymentErrorZ in the success state.
42          */
43         public static Result_NonePaymentErrorZ ok() {
44                 long ret = bindings.CResult_NonePaymentErrorZ_ok();
45                 if (ret >= 0 && ret <= 4096) { return null; }
46                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
47                 return ret_hu_conv;
48         }
49
50         /**
51          * Creates a new CResult_NonePaymentErrorZ in the error state.
52          */
53         public static Result_NonePaymentErrorZ err(org.ldk.structs.PaymentError e) {
54                 long ret = bindings.CResult_NonePaymentErrorZ_err(e.ptr);
55                 Reference.reachabilityFence(e);
56                 if (ret >= 0 && ret <= 4096) { return null; }
57                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
58                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(e); };
59                 return ret_hu_conv;
60         }
61
62         /**
63          * Checks if the given object is currently in the success state
64          */
65         public boolean is_ok() {
66                 boolean ret = bindings.CResult_NonePaymentErrorZ_is_ok(this.ptr);
67                 Reference.reachabilityFence(this);
68                 return ret;
69         }
70
71         long clone_ptr() {
72                 long ret = bindings.CResult_NonePaymentErrorZ_clone_ptr(this.ptr);
73                 Reference.reachabilityFence(this);
74                 return ret;
75         }
76
77         /**
78          * Creates a new CResult_NonePaymentErrorZ which has the same data as `orig`
79          * but with all dynamically-allocated buffers duplicated in new buffers.
80          */
81         public Result_NonePaymentErrorZ clone() {
82                 long ret = bindings.CResult_NonePaymentErrorZ_clone(this.ptr);
83                 Reference.reachabilityFence(this);
84                 if (ret >= 0 && ret <= 4096) { return null; }
85                 Result_NonePaymentErrorZ ret_hu_conv = Result_NonePaymentErrorZ.constr_from_ptr(ret);
86                 return ret_hu_conv;
87         }
88
89 }