[Java] Update LDK batteries to latest upstream API
[ldk-java] / src / main / java / org / ldk / structs / Result_SignedRawInvoiceNoneZ.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_SignedRawInvoiceNoneZ extends CommonBase {
11         private Result_SignedRawInvoiceNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_SignedRawInvoiceNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_SignedRawInvoiceNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_SignedRawInvoiceNoneZ_is_ok(ptr)) {
18                         return new Result_SignedRawInvoiceNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_SignedRawInvoiceNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_SignedRawInvoiceNoneZ_OK extends Result_SignedRawInvoiceNoneZ {
24                 public final SignedRawInvoice res;
25                 private Result_SignedRawInvoiceNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.CResult_SignedRawInvoiceNoneZ_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_SignedRawInvoiceNoneZ_Err extends Result_SignedRawInvoiceNoneZ {
35                 private Result_SignedRawInvoiceNoneZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                 }
38         }
39
40         /**
41          * Creates a new CResult_SignedRawInvoiceNoneZ in the success state.
42          */
43         public static Result_SignedRawInvoiceNoneZ ok(SignedRawInvoice o) {
44                 long ret = bindings.CResult_SignedRawInvoiceNoneZ_ok(o == null ? 0 : o.ptr & ~1);
45                 Reference.reachabilityFence(o);
46                 if (ret >= 0 && ret <= 4096) { return null; }
47                 Result_SignedRawInvoiceNoneZ ret_hu_conv = Result_SignedRawInvoiceNoneZ.constr_from_ptr(ret);
48                 return ret_hu_conv;
49         }
50
51         /**
52          * Creates a new CResult_SignedRawInvoiceNoneZ in the error state.
53          */
54         public static Result_SignedRawInvoiceNoneZ err() {
55                 long ret = bindings.CResult_SignedRawInvoiceNoneZ_err();
56                 if (ret >= 0 && ret <= 4096) { return null; }
57                 Result_SignedRawInvoiceNoneZ ret_hu_conv = Result_SignedRawInvoiceNoneZ.constr_from_ptr(ret);
58                 return ret_hu_conv;
59         }
60
61         /**
62          * Checks if the given object is currently in the success state
63          */
64         public boolean is_ok() {
65                 boolean ret = bindings.CResult_SignedRawInvoiceNoneZ_is_ok(this.ptr);
66                 Reference.reachabilityFence(this);
67                 return ret;
68         }
69
70         long clone_ptr() {
71                 long ret = bindings.CResult_SignedRawInvoiceNoneZ_clone_ptr(this.ptr);
72                 Reference.reachabilityFence(this);
73                 return ret;
74         }
75
76         /**
77          * Creates a new CResult_SignedRawInvoiceNoneZ which has the same data as `orig`
78          * but with all dynamically-allocated buffers duplicated in new buffers.
79          */
80         public Result_SignedRawInvoiceNoneZ clone() {
81                 long ret = bindings.CResult_SignedRawInvoiceNoneZ_clone(this.ptr);
82                 Reference.reachabilityFence(this);
83                 if (ret >= 0 && ret <= 4096) { return null; }
84                 Result_SignedRawInvoiceNoneZ ret_hu_conv = Result_SignedRawInvoiceNoneZ.constr_from_ptr(ret);
85                 return ret_hu_conv;
86         }
87
88 }