Update auto-updated Java files
[ldk-java] / src / main / java / org / ldk / structs / Result_TrustedCommitmentTransactionNoneZ.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_TrustedCommitmentTransactionNoneZ extends CommonBase {
11         private Result_TrustedCommitmentTransactionNoneZ(Object _dummy, long ptr) { super(ptr); }
12         protected void finalize() throws Throwable {
13                 if (ptr != 0) { bindings.CResult_TrustedCommitmentTransactionNoneZ_free(ptr); } super.finalize();
14         }
15
16         static Result_TrustedCommitmentTransactionNoneZ constr_from_ptr(long ptr) {
17                 if (bindings.CResult_TrustedCommitmentTransactionNoneZ_is_ok(ptr)) {
18                         return new Result_TrustedCommitmentTransactionNoneZ_OK(null, ptr);
19                 } else {
20                         return new Result_TrustedCommitmentTransactionNoneZ_Err(null, ptr);
21                 }
22         }
23         public static final class Result_TrustedCommitmentTransactionNoneZ_OK extends Result_TrustedCommitmentTransactionNoneZ {
24                 public final TrustedCommitmentTransaction res;
25                 private Result_TrustedCommitmentTransactionNoneZ_OK(Object _dummy, long ptr) {
26                         super(_dummy, ptr);
27                         long res = bindings.LDKCResult_TrustedCommitmentTransactionNoneZ_get_ok(ptr);
28                         TrustedCommitmentTransaction res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new TrustedCommitmentTransaction(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_TrustedCommitmentTransactionNoneZ_Err extends Result_TrustedCommitmentTransactionNoneZ {
35                 private Result_TrustedCommitmentTransactionNoneZ_Err(Object _dummy, long ptr) {
36                         super(_dummy, ptr);
37                 }
38         }
39
40         /**
41          * Creates a new CResult_TrustedCommitmentTransactionNoneZ in the success state.
42          */
43         public static Result_TrustedCommitmentTransactionNoneZ ok(TrustedCommitmentTransaction o) {
44                 long ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_ok(o == null ? 0 : o.ptr & ~1);
45                 Reference.reachabilityFence(o);
46                 if (ret >= 0 && ret <= 4096) { return null; }
47                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.constr_from_ptr(ret);
48                 ret_hu_conv.ptrs_to.add(o);
49                 // Due to rust's strict-ownership memory model, in some cases we need to "move"
50                 // an object to pass exclusive ownership to the function being called.
51                 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
52                 // at the FFI layer, creating a new object which Rust can claim ownership of
53                 // However, in some cases (eg here), there is no way to clone an object, and thus
54                 // we actually have to pass full ownership to Rust.
55                 // Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
56                 o.ptr = 0;
57                 return ret_hu_conv;
58         }
59
60         /**
61          * Creates a new CResult_TrustedCommitmentTransactionNoneZ in the error state.
62          */
63         public static Result_TrustedCommitmentTransactionNoneZ err() {
64                 long ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_err();
65                 if (ret >= 0 && ret <= 4096) { return null; }
66                 Result_TrustedCommitmentTransactionNoneZ ret_hu_conv = Result_TrustedCommitmentTransactionNoneZ.constr_from_ptr(ret);
67                 return ret_hu_conv;
68         }
69
70         /**
71          * Checks if the given object is currently in the success state
72          */
73         public boolean is_ok() {
74                 boolean ret = bindings.CResult_TrustedCommitmentTransactionNoneZ_is_ok(this.ptr);
75                 Reference.reachabilityFence(this);
76                 return ret;
77         }
78
79 }