[Java] Update auto-generated bindings to LDK 0.0.123
[ldk-java] / src / main / java / org / ldk / structs / Result_PaymentFailureReasonDecodeErrorZ.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_PaymentFailureReasonDecodeErrorZ extends CommonBase {
11         private Result_PaymentFailureReasonDecodeErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_PaymentFailureReasonDecodeErrorZ_free(ptr); } super.finalize();
14         }
15
16         protected void force_free() {
17                 if (ptr != 0) { bindings.CResult_PaymentFailureReasonDecodeErrorZ_free(ptr); ptr = 0; }
18         }
19
20         static Result_PaymentFailureReasonDecodeErrorZ constr_from_ptr(long ptr) {
21                 if (bindings.CResult_PaymentFailureReasonDecodeErrorZ_is_ok(ptr)) {
22                         return new Result_PaymentFailureReasonDecodeErrorZ_OK(null, ptr);
23                 } else {
24                         return new Result_PaymentFailureReasonDecodeErrorZ_Err(null, ptr);
25                 }
26         }
27         public static final class Result_PaymentFailureReasonDecodeErrorZ_OK extends Result_PaymentFailureReasonDecodeErrorZ {
28                 public final PaymentFailureReason res;
29                 private Result_PaymentFailureReasonDecodeErrorZ_OK(Object _dummy, long ptr) {
30                         super(_dummy, ptr);
31                         this.res = bindings.CResult_PaymentFailureReasonDecodeErrorZ_get_ok(ptr);
32                 }
33         }
34
35         public static final class Result_PaymentFailureReasonDecodeErrorZ_Err extends Result_PaymentFailureReasonDecodeErrorZ {
36                 public final DecodeError err;
37                 private Result_PaymentFailureReasonDecodeErrorZ_Err(Object _dummy, long ptr) {
38                         super(_dummy, ptr);
39                         long err = bindings.CResult_PaymentFailureReasonDecodeErrorZ_get_err(ptr);
40                         org.ldk.structs.DecodeError err_hu_conv = org.ldk.structs.DecodeError.constr_from_ptr(err);
41                         if (err_hu_conv != null) { err_hu_conv.ptrs_to.add(this); };
42                         this.err = err_hu_conv;
43                 }
44         }
45
46         /**
47          * Creates a new CResult_PaymentFailureReasonDecodeErrorZ in the success state.
48          */
49         public static Result_PaymentFailureReasonDecodeErrorZ ok(org.ldk.enums.PaymentFailureReason o) {
50                 long ret = bindings.CResult_PaymentFailureReasonDecodeErrorZ_ok(o);
51                 Reference.reachabilityFence(o);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_PaymentFailureReasonDecodeErrorZ ret_hu_conv = Result_PaymentFailureReasonDecodeErrorZ.constr_from_ptr(ret);
54                 return ret_hu_conv;
55         }
56
57         /**
58          * Creates a new CResult_PaymentFailureReasonDecodeErrorZ in the error state.
59          */
60         public static Result_PaymentFailureReasonDecodeErrorZ err(org.ldk.structs.DecodeError e) {
61                 long ret = bindings.CResult_PaymentFailureReasonDecodeErrorZ_err(e.ptr);
62                 Reference.reachabilityFence(e);
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_PaymentFailureReasonDecodeErrorZ ret_hu_conv = Result_PaymentFailureReasonDecodeErrorZ.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_PaymentFailureReasonDecodeErrorZ_is_ok(this.ptr);
74                 Reference.reachabilityFence(this);
75                 return ret;
76         }
77
78         long clone_ptr() {
79                 long ret = bindings.CResult_PaymentFailureReasonDecodeErrorZ_clone_ptr(this.ptr);
80                 Reference.reachabilityFence(this);
81                 return ret;
82         }
83
84         /**
85          * Creates a new CResult_PaymentFailureReasonDecodeErrorZ which has the same data as `orig`
86          * but with all dynamically-allocated buffers duplicated in new buffers.
87          */
88         public Result_PaymentFailureReasonDecodeErrorZ clone() {
89                 long ret = bindings.CResult_PaymentFailureReasonDecodeErrorZ_clone(this.ptr);
90                 Reference.reachabilityFence(this);
91                 if (ret >= 0 && ret <= 4096) { return null; }
92                 Result_PaymentFailureReasonDecodeErrorZ ret_hu_conv = Result_PaymentFailureReasonDecodeErrorZ.constr_from_ptr(ret);
93                 return ret_hu_conv;
94         }
95
96 }