[Java] Update auto-generated Java bindings to LDK 0.0.121
[ldk-java] / src / main / java / org / ldk / structs / Result_CVec_BlindedPathZNoneZ.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_CVec_BlindedPathZNoneZ extends CommonBase {
11         private Result_CVec_BlindedPathZNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_CVec_BlindedPathZNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_CVec_BlindedPathZNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_CVec_BlindedPathZNoneZ_is_ok(ptr)) {
18                         return new Result_CVec_BlindedPathZNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_CVec_BlindedPathZNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_CVec_BlindedPathZNoneZ_OK extends Result_CVec_BlindedPathZNoneZ {
24                 public final BlindedPath[] res;
25                 private Result_CVec_BlindedPathZNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long[] res = bindings.CResult_CVec_BlindedPathZNoneZ_get_ok(ptr);
28                         int res_conv_13_len = res.length;
29                         BlindedPath[] res_conv_13_arr = new BlindedPath[res_conv_13_len];
30                         for (int n = 0; n < res_conv_13_len; n++) {
31                                 long res_conv_13 = res[n];
32                                 org.ldk.structs.BlindedPath res_conv_13_hu_conv = null; if (res_conv_13 < 0 || res_conv_13 > 4096) { res_conv_13_hu_conv = new org.ldk.structs.BlindedPath(null, res_conv_13); }
33                                 if (res_conv_13_hu_conv != null) { res_conv_13_hu_conv.ptrs_to.add(this); };
34                                 res_conv_13_arr[n] = res_conv_13_hu_conv;
35                         }
36                         this.res = res_conv_13_arr;
37                 }
38         }
39
40         public static final class Result_CVec_BlindedPathZNoneZ_Err extends Result_CVec_BlindedPathZNoneZ {
41                 private Result_CVec_BlindedPathZNoneZ_Err(Object _dummy, long ptr) {
42                         super(_dummy, ptr);
43                 }
44         }
45
46         /**
47          * Creates a new CResult_CVec_BlindedPathZNoneZ in the success state.
48          */
49         public static Result_CVec_BlindedPathZNoneZ ok(BlindedPath[] o) {
50                 long ret = bindings.CResult_CVec_BlindedPathZNoneZ_ok(o != null ? Arrays.stream(o).mapToLong(o_conv_13 -> o_conv_13 == null ? 0 : o_conv_13.ptr).toArray() : null);
51                 Reference.reachabilityFence(o);
52                 if (ret >= 0 && ret <= 4096) { return null; }
53                 Result_CVec_BlindedPathZNoneZ ret_hu_conv = Result_CVec_BlindedPathZNoneZ.constr_from_ptr(ret);
54                 for (BlindedPath o_conv_13: o) { if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o_conv_13); }; };
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Creates a new CResult_CVec_BlindedPathZNoneZ in the error state.
60          */
61         public static Result_CVec_BlindedPathZNoneZ err() {
62                 long ret = bindings.CResult_CVec_BlindedPathZNoneZ_err();
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_CVec_BlindedPathZNoneZ ret_hu_conv = Result_CVec_BlindedPathZNoneZ.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_CVec_BlindedPathZNoneZ_is_ok(this.ptr);
73                 Reference.reachabilityFence(this);
74                 return ret;
75         }
76
77         long clone_ptr() {
78                 long ret = bindings.CResult_CVec_BlindedPathZNoneZ_clone_ptr(this.ptr);
79                 Reference.reachabilityFence(this);
80                 return ret;
81         }
82
83         /**
84          * Creates a new CResult_CVec_BlindedPathZNoneZ which has the same data as `orig`
85          * but with all dynamically-allocated buffers duplicated in new buffers.
86          */
87         public Result_CVec_BlindedPathZNoneZ clone() {
88                 long ret = bindings.CResult_CVec_BlindedPathZNoneZ_clone(this.ptr);
89                 Reference.reachabilityFence(this);
90                 if (ret >= 0 && ret <= 4096) { return null; }
91                 Result_CVec_BlindedPathZNoneZ ret_hu_conv = Result_CVec_BlindedPathZNoneZ.constr_from_ptr(ret);
92                 return ret_hu_conv;
93         }
94
95 }