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