]> git.bitcoin.ninja Git - ldk-java/blob - src/main/java/org/ldk/structs/Result_PayeePubKeySecp256k1ErrorZ.java
Update CI references to LDK 0.0.124 drop stale memchr pins
[ldk-java] / src / main / java / org / ldk / structs / Result_PayeePubKeySecp256k1ErrorZ.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_PayeePubKeySecp256k1ErrorZ extends CommonBase {
11         private Result_PayeePubKeySecp256k1ErrorZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_PayeePubKeySecp256k1ErrorZ_free(ptr); } super.finalize();
14         }
15
16         protected void force_free() {
17                 if (ptr != 0) { bindings.CResult_PayeePubKeySecp256k1ErrorZ_free(ptr); ptr = 0; }
18         }
19
20         static Result_PayeePubKeySecp256k1ErrorZ constr_from_ptr(long ptr) {
21                 if (bindings.CResult_PayeePubKeySecp256k1ErrorZ_is_ok(ptr)) {
22                         return new Result_PayeePubKeySecp256k1ErrorZ_OK(null, ptr);
23                 } else {
24                         return new Result_PayeePubKeySecp256k1ErrorZ_Err(null, ptr);
25                 }
26         }
27         public static final class Result_PayeePubKeySecp256k1ErrorZ_OK extends Result_PayeePubKeySecp256k1ErrorZ {
28                 public final PayeePubKey res;
29                 private Result_PayeePubKeySecp256k1ErrorZ_OK(Object _dummy, long ptr) {
30                         super(_dummy, ptr);
31                         long res = bindings.CResult_PayeePubKeySecp256k1ErrorZ_get_ok(ptr);
32                         org.ldk.structs.PayeePubKey res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.PayeePubKey(null, res); }
33                         if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
34                         this.res = res_hu_conv;
35                 }
36         }
37
38         public static final class Result_PayeePubKeySecp256k1ErrorZ_Err extends Result_PayeePubKeySecp256k1ErrorZ {
39                 public final Secp256k1Error err;
40                 private Result_PayeePubKeySecp256k1ErrorZ_Err(Object _dummy, long ptr) {
41                         super(_dummy, ptr);
42                         this.err = bindings.CResult_PayeePubKeySecp256k1ErrorZ_get_err(ptr);
43                 }
44         }
45
46         /**
47          * Creates a new CResult_PayeePubKeySecp256k1ErrorZ in the success state.
48          */
49         public static Result_PayeePubKeySecp256k1ErrorZ ok(org.ldk.structs.PayeePubKey o) {
50                 long ret = bindings.CResult_PayeePubKeySecp256k1ErrorZ_ok(o.ptr);
51                 Reference.reachabilityFence(o);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_PayeePubKeySecp256k1ErrorZ ret_hu_conv = Result_PayeePubKeySecp256k1ErrorZ.constr_from_ptr(ret);
54                 return ret_hu_conv;
55         }
56
57         /**
58          * Creates a new CResult_PayeePubKeySecp256k1ErrorZ in the error state.
59          */
60         public static Result_PayeePubKeySecp256k1ErrorZ err(org.ldk.enums.Secp256k1Error e) {
61                 long ret = bindings.CResult_PayeePubKeySecp256k1ErrorZ_err(e);
62                 Reference.reachabilityFence(e);
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_PayeePubKeySecp256k1ErrorZ ret_hu_conv = Result_PayeePubKeySecp256k1ErrorZ.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_PayeePubKeySecp256k1ErrorZ_is_ok(this.ptr);
73                 Reference.reachabilityFence(this);
74                 return ret;
75         }
76
77         long clone_ptr() {
78                 long ret = bindings.CResult_PayeePubKeySecp256k1ErrorZ_clone_ptr(this.ptr);
79                 Reference.reachabilityFence(this);
80                 return ret;
81         }
82
83         /**
84          * Creates a new CResult_PayeePubKeySecp256k1ErrorZ which has the same data as `orig`
85          * but with all dynamically-allocated buffers duplicated in new buffers.
86          */
87         public Result_PayeePubKeySecp256k1ErrorZ clone() {
88                 long ret = bindings.CResult_PayeePubKeySecp256k1ErrorZ_clone(this.ptr);
89                 Reference.reachabilityFence(this);
90                 if (ret >= 0 && ret <= 4096) { return null; }
91                 Result_PayeePubKeySecp256k1ErrorZ ret_hu_conv = Result_PayeePubKeySecp256k1ErrorZ.constr_from_ptr(ret);
92                 return ret_hu_conv;
93         }
94
95 }