[Java] Update auto-generated bindings
[ldk-java] / src / main / java / org / ldk / structs / Result_SignedRawInvoiceParseErrorZ.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_SignedRawInvoiceParseErrorZ extends CommonBase {
11         private Result_SignedRawInvoiceParseErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_SignedRawInvoiceParseErrorZ_free(ptr); } super.finalize();
14         }
15
16         static Result_SignedRawInvoiceParseErrorZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_SignedRawInvoiceParseErrorZ_is_ok(ptr)) {
18                         return new Result_SignedRawInvoiceParseErrorZ_OK(null, ptr);
19                 } else {
20                         return new Result_SignedRawInvoiceParseErrorZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_SignedRawInvoiceParseErrorZ_OK extends Result_SignedRawInvoiceParseErrorZ {
24                 public final SignedRawInvoice res;
25                 private Result_SignedRawInvoiceParseErrorZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_SignedRawInvoiceParseErrorZ_get_ok(ptr);
28                         SignedRawInvoice res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new SignedRawInvoice(null, res); }
29                         res_hu_conv.ptrs_to.add(this);
30                         this.res = res_hu_conv;
31                 }
32         }
33
34         public static final class Result_SignedRawInvoiceParseErrorZ_Err extends Result_SignedRawInvoiceParseErrorZ {
35                 public final ParseError err;
36                 private Result_SignedRawInvoiceParseErrorZ_Err(Object _dummy, long ptr) {
37                         super(_dummy, ptr);
38                         long err = bindings.CResult_SignedRawInvoiceParseErrorZ_get_err(ptr);
39                         org.ldk.structs.ParseError err_hu_conv = org.ldk.structs.ParseError.constr_from_ptr(err);
40                         err_hu_conv.ptrs_to.add(this);
41                         this.err = err_hu_conv;
42                 }
43         }
44
45         /**
46          * Creates a new CResult_SignedRawInvoiceParseErrorZ in the success state.
47          */
48         public static Result_SignedRawInvoiceParseErrorZ ok(SignedRawInvoice o) {
49                 long ret = bindings.CResult_SignedRawInvoiceParseErrorZ_ok(o == null ? 0 : o.ptr & ~1);
50                 Reference.reachabilityFence(o);
51                 if (ret >= 0 && ret <= 4096) { return null; }
52                 Result_SignedRawInvoiceParseErrorZ ret_hu_conv = Result_SignedRawInvoiceParseErrorZ.constr_from_ptr(ret);
53                 return ret_hu_conv;
54         }
55
56         /**
57          * Creates a new CResult_SignedRawInvoiceParseErrorZ in the error state.
58          */
59         public static Result_SignedRawInvoiceParseErrorZ err(ParseError e) {
60                 long ret = bindings.CResult_SignedRawInvoiceParseErrorZ_err(e.ptr);
61                 Reference.reachabilityFence(e);
62                 if (ret >= 0 && ret <= 4096) { return null; }
63                 Result_SignedRawInvoiceParseErrorZ ret_hu_conv = Result_SignedRawInvoiceParseErrorZ.constr_from_ptr(ret);
64                 return ret_hu_conv;
65         }
66
67         /**
68          * Checks if the given object is currently in the success state
69          */
70         public boolean is_ok() {
71                 boolean ret = bindings.CResult_SignedRawInvoiceParseErrorZ_is_ok(this.ptr);
72                 Reference.reachabilityFence(this);
73                 return ret;
74         }
75
76         long clone_ptr() {
77                 long ret = bindings.CResult_SignedRawInvoiceParseErrorZ_clone_ptr(this.ptr);
78                 Reference.reachabilityFence(this);
79                 return ret;
80         }
81
82         /**
83          * Creates a new CResult_SignedRawInvoiceParseErrorZ which has the same data as `orig`
84          * but with all dynamically-allocated buffers duplicated in new buffers.
85          */
86         public Result_SignedRawInvoiceParseErrorZ clone() {
87                 long ret = bindings.CResult_SignedRawInvoiceParseErrorZ_clone(this.ptr);
88                 Reference.reachabilityFence(this);
89                 if (ret >= 0 && ret <= 4096) { return null; }
90                 Result_SignedRawInvoiceParseErrorZ ret_hu_conv = Result_SignedRawInvoiceParseErrorZ.constr_from_ptr(ret);
91                 return ret_hu_conv;
92         }
93
94 }