[TS] Update auto-generated bindings to LDK-C-Bindings 0.0.123.1
[ldk-java] / src / main / java / org / ldk / structs / Result_TransactionU16LenLimitedNoneZ.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_TransactionU16LenLimitedNoneZ extends CommonBase {
11         private Result_TransactionU16LenLimitedNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_TransactionU16LenLimitedNoneZ_free(ptr); } super.finalize();
14         }
15
16         protected void force_free() {
17                 if (ptr != 0) { bindings.CResult_TransactionU16LenLimitedNoneZ_free(ptr); ptr = 0; }
18         }
19
20         static Result_TransactionU16LenLimitedNoneZ constr_from_ptr(long ptr) {
21                 if (bindings.CResult_TransactionU16LenLimitedNoneZ_is_ok(ptr)) {
22                         return new Result_TransactionU16LenLimitedNoneZ_OK(null, ptr);
23                 } else {
24                         return new Result_TransactionU16LenLimitedNoneZ_Err(null, ptr);
25                 }
26         }
27         public static final class Result_TransactionU16LenLimitedNoneZ_OK extends Result_TransactionU16LenLimitedNoneZ {
28                 public final TransactionU16LenLimited res;
29                 private Result_TransactionU16LenLimitedNoneZ_OK(Object _dummy, long ptr) {
30                         super(_dummy, ptr);
31                         long res = bindings.CResult_TransactionU16LenLimitedNoneZ_get_ok(ptr);
32                         org.ldk.structs.TransactionU16LenLimited res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.TransactionU16LenLimited(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_TransactionU16LenLimitedNoneZ_Err extends Result_TransactionU16LenLimitedNoneZ {
39                 private Result_TransactionU16LenLimitedNoneZ_Err(Object _dummy, long ptr) {
40                         super(_dummy, ptr);
41                 }
42         }
43
44         /**
45          * Creates a new CResult_TransactionU16LenLimitedNoneZ in the success state.
46          */
47         public static Result_TransactionU16LenLimitedNoneZ ok(org.ldk.structs.TransactionU16LenLimited o) {
48                 long ret = bindings.CResult_TransactionU16LenLimitedNoneZ_ok(o.ptr);
49                 Reference.reachabilityFence(o);
50                 if (ret >= 0 && ret <= 4096) { return null; }
51                 Result_TransactionU16LenLimitedNoneZ ret_hu_conv = Result_TransactionU16LenLimitedNoneZ.constr_from_ptr(ret);
52                 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
53                 return ret_hu_conv;
54         }
55
56         /**
57          * Creates a new CResult_TransactionU16LenLimitedNoneZ in the error state.
58          */
59         public static Result_TransactionU16LenLimitedNoneZ err() {
60                 long ret = bindings.CResult_TransactionU16LenLimitedNoneZ_err();
61                 if (ret >= 0 && ret <= 4096) { return null; }
62                 Result_TransactionU16LenLimitedNoneZ ret_hu_conv = Result_TransactionU16LenLimitedNoneZ.constr_from_ptr(ret);
63                 return ret_hu_conv;
64         }
65
66         /**
67          * Checks if the given object is currently in the success state
68          */
69         public boolean is_ok() {
70                 boolean ret = bindings.CResult_TransactionU16LenLimitedNoneZ_is_ok(this.ptr);
71                 Reference.reachabilityFence(this);
72                 return ret;
73         }
74
75         long clone_ptr() {
76                 long ret = bindings.CResult_TransactionU16LenLimitedNoneZ_clone_ptr(this.ptr);
77                 Reference.reachabilityFence(this);
78                 return ret;
79         }
80
81         /**
82          * Creates a new CResult_TransactionU16LenLimitedNoneZ which has the same data as `orig`
83          * but with all dynamically-allocated buffers duplicated in new buffers.
84          */
85         public Result_TransactionU16LenLimitedNoneZ clone() {
86                 long ret = bindings.CResult_TransactionU16LenLimitedNoneZ_clone(this.ptr);
87                 Reference.reachabilityFence(this);
88                 if (ret >= 0 && ret <= 4096) { return null; }
89                 Result_TransactionU16LenLimitedNoneZ ret_hu_conv = Result_TransactionU16LenLimitedNoneZ.constr_from_ptr(ret);
90                 return ret_hu_conv;
91         }
92
93 }