1 package org.ldk.structs;
3 import org.ldk.impl.bindings;
4 import org.ldk.enums.*;
6 import java.util.Arrays;
7 import java.lang.ref.Reference;
8 import javax.annotation.Nullable;
10 public class Result_LockedChannelMonitorNoneZ extends CommonBase {
11 private Result_LockedChannelMonitorNoneZ(Object _dummy, long ptr) { super(ptr); }
12 protected void finalize() throws Throwable {
13 if (ptr != 0) { bindings.CResult_LockedChannelMonitorNoneZ_free(ptr); } super.finalize();
16 protected void force_free() {
17 if (ptr != 0) { bindings.CResult_LockedChannelMonitorNoneZ_free(ptr); ptr = 0; }
20 static Result_LockedChannelMonitorNoneZ constr_from_ptr(long ptr) {
21 if (bindings.CResult_LockedChannelMonitorNoneZ_is_ok(ptr)) {
22 return new Result_LockedChannelMonitorNoneZ_OK(null, ptr);
24 return new Result_LockedChannelMonitorNoneZ_Err(null, ptr);
27 public static final class Result_LockedChannelMonitorNoneZ_OK extends Result_LockedChannelMonitorNoneZ {
28 public final LockedChannelMonitor res;
29 private Result_LockedChannelMonitorNoneZ_OK(Object _dummy, long ptr) {
31 long res = bindings.CResult_LockedChannelMonitorNoneZ_get_ok(ptr);
32 org.ldk.structs.LockedChannelMonitor res_hu_conv = null; if (res < 0 || res > 4096) { res_hu_conv = new org.ldk.structs.LockedChannelMonitor(null, res); }
33 if (res_hu_conv != null) { res_hu_conv.ptrs_to.add(this); };
34 this.res = res_hu_conv;
38 public static final class Result_LockedChannelMonitorNoneZ_Err extends Result_LockedChannelMonitorNoneZ {
39 private Result_LockedChannelMonitorNoneZ_Err(Object _dummy, long ptr) {
45 * Creates a new CResult_LockedChannelMonitorNoneZ in the success state.
47 public static Result_LockedChannelMonitorNoneZ ok(org.ldk.structs.LockedChannelMonitor o) {
48 long ret = bindings.CResult_LockedChannelMonitorNoneZ_ok(o.ptr);
49 Reference.reachabilityFence(o);
50 if (ret >= 0 && ret <= 4096) { return null; }
51 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
52 if (ret_hu_conv != null) { ret_hu_conv.ptrs_to.add(o); };
53 // Due to rust's strict-ownership memory model, in some cases we need to "move"
54 // an object to pass exclusive ownership to the function being called.
55 // In most cases, we avoid ret_hu_conv being visible in GC'd languages by cloning the object
56 // at the FFI layer, creating a new object which Rust can claim ownership of
57 // However, in some cases (eg here), there is no way to clone an object, and thus
58 // we actually have to pass full ownership to Rust.
59 // Thus, after ret_hu_conv call, o is reset to null and is now a dummy object.
65 * Creates a new CResult_LockedChannelMonitorNoneZ in the error state.
67 public static Result_LockedChannelMonitorNoneZ err() {
68 long ret = bindings.CResult_LockedChannelMonitorNoneZ_err();
69 if (ret >= 0 && ret <= 4096) { return null; }
70 Result_LockedChannelMonitorNoneZ ret_hu_conv = Result_LockedChannelMonitorNoneZ.constr_from_ptr(ret);
75 * Checks if the given object is currently in the success state
77 public boolean is_ok() {
78 boolean ret = bindings.CResult_LockedChannelMonitorNoneZ_is_ok(this.ptr);
79 Reference.reachabilityFence(this);