Update auto-generated bindings to 0.0.103
[ldk-java] / src / main / java / org / ldk / structs / Result_LockedChannelMonitorNoneZ.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 javax.annotation.Nullable;
8
9 public class Result_LockedChannelMonitorNoneZ extends CommonBase {
10         private Result_LockedChannelMonitorNoneZ(Object _dummy, long ptr) { super(ptr); }
11         protected void finalize() throws Throwable {
12                 if (ptr != 0) { bindings.CResult_LockedChannelMonitorNoneZ_free(ptr); } super.finalize();
13         }
14
15         static Result_LockedChannelMonitorNoneZ constr_from_ptr(long ptr) {
16                 if (bindings.LDKCResult_LockedChannelMonitorNoneZ_result_ok(ptr)) {
17                         return new Result_LockedChannelMonitorNoneZ_OK(null, ptr);
18                 } else {
19                         return new Result_LockedChannelMonitorNoneZ_Err(null, ptr);
20                 }
21         }
22         public static final class Result_LockedChannelMonitorNoneZ_OK extends Result_LockedChannelMonitorNoneZ {
23                 public final LockedChannelMonitor res;
24                 private Result_LockedChannelMonitorNoneZ_OK(Object _dummy, long ptr) {
25                         super(_dummy, ptr);
26                         long res = bindings.LDKCResult_LockedChannelMonitorNoneZ_get_ok(ptr);
27                         LockedChannelMonitor res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new LockedChannelMonitor(null, res); }
28                         res_hu_conv.ptrs_to.add(this);
29                         this.res = res_hu_conv;
30                 }
31         }
32
33         public static final class Result_LockedChannelMonitorNoneZ_Err extends Result_LockedChannelMonitorNoneZ {
34                 private Result_LockedChannelMonitorNoneZ_Err(Object _dummy, long ptr) {
35                         super(_dummy, ptr);
36                 }
37         }
38
39         /**
40          * Creates a new CResult_LockedChannelMonitorNoneZ in the success state.
41          */
42         public static Result_LockedChannelMonitorNoneZ ok(LockedChannelMonitor o) {
43                 long ret = bindings.CResult_LockedChannelMonitorNoneZ_ok(o == null ? 0 : o.ptr & ~1);
44                 if (ret >= 0 && ret <= 4096) { return null; }
45                 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
46                 ret_hu_conv.ptrs_to.add(o);
47                 // Due to rust's strict-ownership memory model, in some cases we need to "move"
48                 // an object to pass exclusive ownership to the function being called.
49                 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
50                 // at the FFI layer, creating a new object which Rust can claim ownership of
51                 // However, in some cases (eg here), there is no way to clone an object, and thus
52                 // we actually have to pass full ownership to Rust.
53                 // Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
54                 o.ptr = 0;
55                 return ret_hu_conv;
56         }
57
58         /**
59          * Creates a new CResult_LockedChannelMonitorNoneZ in the error state.
60          */
61         public static Result_LockedChannelMonitorNoneZ err() {
62                 long ret = bindings.CResult_LockedChannelMonitorNoneZ_err();
63                 if (ret >= 0 && ret <= 4096) { return null; }
64                 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
65                 return ret_hu_conv;
66         }
67
68 }