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